diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-11-15 14:27:55 -0800 |
|---|---|---|
| committer | Niko Matsakis <niko@alum.mit.edu> | 2011-11-16 15:24:56 -0800 |
| commit | d2199e87166e82c394bf7d8c28374287145ff1b7 (patch) | |
| tree | 478b9e2c62765ace785d3b0ce023da6f416d68ba /src/rt/arch/x86_64 | |
| parent | 319f3b02f3272ce5b58b04bc3d2abfc5b33991f0 (diff) | |
| download | rust-d2199e87166e82c394bf7d8c28374287145ff1b7.tar.gz rust-d2199e87166e82c394bf7d8c28374287145ff1b7.zip | |
Various fixes for x86_64 on linux
Configure LLVM correctly, use the right data layout, add the readlink function back, fix C constants, etc.
Diffstat (limited to 'src/rt/arch/x86_64')
| -rw-r--r-- | src/rt/arch/x86_64/ccall.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/arch/x86_64/ccall.S b/src/rt/arch/x86_64/ccall.S index 7a69aecedbf..7ea29f2cea1 100644 --- a/src/rt/arch/x86_64/ccall.S +++ b/src/rt/arch/x86_64/ccall.S @@ -61,7 +61,7 @@ upcall_call_c_stack_float: _upcall_call_c_stack_shim: #else .globl upcall_call_c_stack_shim -upcall_call_c_stack_shim +upcall_call_c_stack_shim: #endif push %rbp mov %rsp,%rbp // save rsp |
