diff options
author | Dan Gohman <gohman@apple.com> | 2007-11-05 23:35:22 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2007-11-05 23:35:22 +0000 |
commit | 08143e397df8c75e8c6aa217b1bc3e65c41bba16 (patch) | |
tree | a16f86da4809ec413f06f2c92c1d7caaefc68e24 /llvm/test/CodeGen/X86/vector-rem.ll | |
parent | 4decbc50022c4f62b07cc245de8f1a912523b7ab (diff) | |
download | bcm5719-llvm-08143e397df8c75e8c6aa217b1bc3e65c41bba16.tar.gz bcm5719-llvm-08143e397df8c75e8c6aa217b1bc3e65c41bba16.zip |
Add support for vector remainder operations.
llvm-svn: 43744
Diffstat (limited to 'llvm/test/CodeGen/X86/vector-rem.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/vector-rem.ll | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/X86/vector-rem.ll b/llvm/test/CodeGen/X86/vector-rem.ll new file mode 100644 index 00000000000..cfdd34ee1c9 --- /dev/null +++ b/llvm/test/CodeGen/X86/vector-rem.ll @@ -0,0 +1,15 @@ +; RUN: llvm-as < %s | llc -march=x86-64 | grep div | count 8 +; RUN: llvm-as < %s | llc -march=x86-64 | grep fmodf | count 4 + +define <4 x i32> @foo(<4 x i32> %t, <4 x i32> %u) { + %m = srem <4 x i32> %t, %u + ret <4 x i32> %m +} +define <4 x i32> @bar(<4 x i32> %t, <4 x i32> %u) { + %m = urem <4 x i32> %t, %u + ret <4 x i32> %m +} +define <4 x float> @qux(<4 x float> %t, <4 x float> %u) { + %m = frem <4 x float> %t, %u + ret <4 x float> %m +} |