diff options
| author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-10-23 09:06:59 +0000 |
|---|---|---|
| committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-10-23 09:06:59 +0000 |
| commit | aa19ee17c09874a7c8dbc548b94aa1d0d6aeb453 (patch) | |
| tree | 80e2b0bc007b357e7a9ec0c93e8c6e6f8b2b0132 /llvm/test | |
| parent | c3ce5840af4fab8496a48488bb59660698397fd2 (diff) | |
| download | bcm5719-llvm-aa19ee17c09874a7c8dbc548b94aa1d0d6aeb453.tar.gz bcm5719-llvm-aa19ee17c09874a7c8dbc548b94aa1d0d6aeb453.zip | |
X86: Emit _fltused instead of __fltused on Windows x64.
llvm-svn: 117205
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/X86/fltused.ll | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/X86/fltused.ll b/llvm/test/CodeGen/X86/fltused.ll index a8960212905..2ffcb966782 100644 --- a/llvm/test/CodeGen/X86/fltused.ll +++ b/llvm/test/CodeGen/X86/fltused.ll @@ -2,7 +2,8 @@ ; any function is called with floating point arguments on Windows. And that it ; is not emitted otherwise. -; RUN: llc < %s -mtriple i686-pc-win32 | FileCheck %s +; RUN: llc < %s -mtriple i686-pc-win32 | FileCheck %s --check-prefix WIN32 +; RUN: llc < %s -mtriple x86_64-pc-win32 | FileCheck %s --check-prefix WIN64 @.str = private constant [4 x i8] c"%f\0A\00" @@ -14,4 +15,5 @@ entry: declare i32 @printf(i8* nocapture, ...) nounwind -; CHECK: .globl __fltused +; WIN32: .globl __fltused +; WIN64: .globl _fltused |

