about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/comp/back/link.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/comp/back/link.rs b/src/comp/back/link.rs
index a451d9dbacc..b8c140c73b2 100644
--- a/src/comp/back/link.rs
+++ b/src/comp/back/link.rs
@@ -244,7 +244,7 @@ mod write {
                                     buf_o,
                                     LLVMAssemblyFile,
                                     CodeGenOptLevel,
-                                    opts.stack_growth)})});
+                                    true)})});
                 }
 
 
@@ -264,7 +264,7 @@ mod write {
                                         buf_o,
                                         LLVMObjectFile,
                                         CodeGenOptLevel,
-                                        opts.stack_growth)})});
+                                        true)})});
                 }
             } else {
                 // If we aren't saving temps then just output the file
@@ -282,7 +282,7 @@ mod write {
                                     buf_o,
                                     FileType,
                                     CodeGenOptLevel,
-                                    opts.stack_growth)})});
+                                    true)})});
             }
             // Clean up and return
 
@@ -651,9 +651,7 @@ fn link_binary(sess: session::session,
     }
 
     // Stack growth requires statically linking a __morestack function
-    if sess.get_opts().stack_growth {
-        gcc_args += ["-lmorestack"];
-    }
+    gcc_args += ["-lmorestack"];
 
     gcc_args += rpath::get_rpath_flags(sess, output);