diff options
| author | Julien Lerouge <jlerouge@apple.com> | 2011-07-08 21:40:25 +0000 |
|---|---|---|
| committer | Julien Lerouge <jlerouge@apple.com> | 2011-07-08 21:40:25 +0000 |
| commit | 112fcc164a427f7a9ae4800b7ea11c3ae4493c62 (patch) | |
| tree | 5248102571aeeb74565c645b451d53945ea9231c /llvm/test | |
| parent | ae7bc987101d8f27460142de7da34a47bcd525b8 (diff) | |
| download | bcm5719-llvm-112fcc164a427f7a9ae4800b7ea11c3ae4493c62.tar.gz bcm5719-llvm-112fcc164a427f7a9ae4800b7ea11c3ae4493c62.zip | |
Add _allrem, _aullrem and _allmul to the runtime for MSVC.
http://llvm.org/bugs/show_bug.cgi?id=10305
llvm-svn: 134744
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/X86/allrem-moddi3.ll | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/allrem-moddi3.ll b/llvm/test/CodeGen/X86/allrem-moddi3.ll new file mode 100644 index 00000000000..0c3d04f89af --- /dev/null +++ b/llvm/test/CodeGen/X86/allrem-moddi3.ll @@ -0,0 +1,19 @@ +; Test that, for a 64 bit signed rem, a libcall to allrem is made on Windows +; unless we have libgcc. + +; RUN: llc < %s -mtriple i386-pc-win32 | FileCheck %s +; RUN: llc < %s -mtriple i386-pc-cygwin | FileCheck %s -check-prefix USEMODDI +; RUN: llc < %s -mtriple i386-pc-mingw32 | FileCheck %s -check-prefix USEMODDI +; PR10305 +; END. + +define i32 @main(i32 %argc, i8** nocapture %argv) nounwind readonly { +entry: + %conv4 = sext i32 %argc to i64 + %div = srem i64 84, %conv4 + %conv7 = trunc i64 %div to i32 + ret i32 %conv7 +} + +; CHECK: allrem +; USEMODDI: moddi3 |

