about summary refs log tree commit diff
path: root/src/rt
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-12-02 15:32:33 -0800
committerBrian Anderson <banderson@mozilla.com>2011-12-02 15:32:51 -0800
commitc254936f326061e98414a668d2fd8a7bee01bbb7 (patch)
tree6ef1309f4c8ec6702f96e130e3f6f53718885aab /src/rt
parent1b7f1415d629d984a7e839a269e88ca6cfb743a0 (diff)
downloadrust-c254936f326061e98414a668d2fd8a7bee01bbb7.tar.gz
rust-c254936f326061e98414a668d2fd8a7bee01bbb7.zip
rt: Fix __morestack prologue on x86_64 mac
Diffstat (limited to 'src/rt')
-rw-r--r--src/rt/arch/x86_64/morestack.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/arch/x86_64/morestack.S b/src/rt/arch/x86_64/morestack.S
index 652cf098068..4147052345d 100644
--- a/src/rt/arch/x86_64/morestack.S
+++ b/src/rt/arch/x86_64/morestack.S
@@ -55,8 +55,8 @@ MORESTACK:
 #endif
 	
 	// Set up a normal backtrace
-#if defined(__ELF__)
 	pushq %rbp
+#if defined(__ELF__)
 	.cfi_def_cfa_offset 16
 	.cfi_offset %rbp, -16
 #endif