diff options
| author | Graydon Hoare <[email protected]> | 2010-11-08 13:36:03 -0800 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-11-08 13:36:03 -0800 |
| commit | c5720b2fc4cff4551a999ff66ed3a12dbd26c6c1 (patch) | |
| tree | 5f6b795e7d5bebee6db533f3cfdc3840aed014a7 /src/boot | |
| parent | Update lltrans to also emit WinMain@16 on windows. (diff) | |
| download | rust-c5720b2fc4cff4551a999ff66ed3a12dbd26c6c1.tar.xz rust-c5720b2fc4cff4551a999ff66ed3a12dbd26c6c1.zip | |
Fix linux burn caused by last commit on friday.
Diffstat (limited to 'src/boot')
| -rw-r--r-- | src/boot/llvm/llasm.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/llvm/llasm.ml b/src/boot/llvm/llasm.ml index 67f02517..70cf2470 100644 --- a/src/boot/llvm/llasm.ml +++ b/src/boot/llvm/llasm.ml @@ -25,7 +25,7 @@ let x86_glue : asm_glue = let (prefix,align) = match sess.Session.sess_targ with - Linux_x86_elf + Linux_x86_elf -> ("", 4) | Win32_x86_pe -> ("_",4) | MacOS_x86_macho -> ("_", 16) in |