diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-05-24 02:14:05 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-05-24 02:14:05 +0000 |
commit | e716bb1c59fe64c663d1d352e0e3889a28dbaca2 (patch) | |
tree | 7348b915bbb3da181d246933c11375d67eed6d5a /test/Bitcode | |
parent | 5ea38a6144ae185882b87eb9bd19d785de30ef0c (diff) |
Eliminate x86.sse2.movs.d, x86.sse2.shuf.pd, x86.sse2.unpckh.pd, and x86.sse2.unpckl.pd intrinsics. These will be lowered into shuffles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Bitcode')
-rw-r--r-- | test/Bitcode/sse2_movs_d.ll | 2 | ||||
-rw-r--r-- | test/Bitcode/sse2_movs_d.ll.bc | bin | 0 -> 476 bytes | |||
-rw-r--r-- | test/Bitcode/sse2_shuf_pd.ll | 2 | ||||
-rw-r--r-- | test/Bitcode/sse2_shuf_pd.ll.bc | bin | 0 -> 584 bytes | |||
-rw-r--r-- | test/Bitcode/sse2_unpck_pd.ll | 3 | ||||
-rw-r--r-- | test/Bitcode/sse2_unpck_pd.ll.bc | bin | 0 -> 572 bytes |
6 files changed, 7 insertions, 0 deletions
diff --git a/test/Bitcode/sse2_movs_d.ll b/test/Bitcode/sse2_movs_d.ll new file mode 100644 index 0000000000..25a35b6455 --- /dev/null +++ b/test/Bitcode/sse2_movs_d.ll @@ -0,0 +1,2 @@ +; RUN: llvm-dis < %s.bc | not grep {i32 @llvm\\.movs.d} +; RUN: llvm-dis < %s.bc | grep shufflevector diff --git a/test/Bitcode/sse2_movs_d.ll.bc b/test/Bitcode/sse2_movs_d.ll.bc Binary files differnew file mode 100644 index 0000000000..719d5294e1 --- /dev/null +++ b/test/Bitcode/sse2_movs_d.ll.bc diff --git a/test/Bitcode/sse2_shuf_pd.ll b/test/Bitcode/sse2_shuf_pd.ll new file mode 100644 index 0000000000..5829edbc25 --- /dev/null +++ b/test/Bitcode/sse2_shuf_pd.ll @@ -0,0 +1,2 @@ +; RUN: llvm-dis < %s.bc | not grep {i32 @llvm\\.shuf.pd} +; RUN: llvm-dis < %s.bc | grep shufflevector diff --git a/test/Bitcode/sse2_shuf_pd.ll.bc b/test/Bitcode/sse2_shuf_pd.ll.bc Binary files differnew file mode 100644 index 0000000000..832c39e103 --- /dev/null +++ b/test/Bitcode/sse2_shuf_pd.ll.bc diff --git a/test/Bitcode/sse2_unpck_pd.ll b/test/Bitcode/sse2_unpck_pd.ll new file mode 100644 index 0000000000..f4e5d54068 --- /dev/null +++ b/test/Bitcode/sse2_unpck_pd.ll @@ -0,0 +1,3 @@ +; RUN: llvm-dis < %s.bc | not grep {i32 @llvm\\.unpckh.pd} +; RUN: llvm-dis < %s.bc | not grep {i32 @llvm\\.unpckl.pd} +; RUN: llvm-dis < %s.bc | grep shufflevector diff --git a/test/Bitcode/sse2_unpck_pd.ll.bc b/test/Bitcode/sse2_unpck_pd.ll.bc Binary files differnew file mode 100644 index 0000000000..4fb829cbf7 --- /dev/null +++ b/test/Bitcode/sse2_unpck_pd.ll.bc |