diff options
author | Chris Lattner <sabre@nondot.org> | 2008-02-19 07:58:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-02-19 07:58:11 +0000 |
commit | a00c808d4050cece0dd328d614aa6d01b9824f8f (patch) | |
tree | 220e3b3a1b30e14cdcf1a160e7a64b220c6fc934 /llvm/test/Other | |
parent | c3591a0d48ce045bbf5ae0d78a41f3dae4bb99db (diff) | |
download | bcm5719-llvm-a00c808d4050cece0dd328d614aa6d01b9824f8f.tar.gz bcm5719-llvm-a00c808d4050cece0dd328d614aa6d01b9824f8f.zip |
dead pass
llvm-svn: 47324
Diffstat (limited to 'llvm/test/Other')
-rw-r--r-- | llvm/test/Other/2004-08-16-LowerPacked.ll | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/test/Other/2004-08-16-LowerPacked.ll b/llvm/test/Other/2004-08-16-LowerPacked.ll deleted file mode 100644 index a3bc4c36085..00000000000 --- a/llvm/test/Other/2004-08-16-LowerPacked.ll +++ /dev/null @@ -1,16 +0,0 @@ -; RUN: llvm-as < %s | opt -lower-packed | llvm-dis -@foo = external global <2 x i32> ; <<2 x i32>*> [#uses=2] -@bar = external global <2 x i32> ; <<2 x i32>*> [#uses=1] - -define void @main() { - %t0 = load <2 x i32>* @foo ; <<2 x i32>> [#uses=6] - %t2 = add <2 x i32> %t0, %t0 ; <<2 x i32>> [#uses=1] - %t3 = select i1 false, <2 x i32> %t0, <2 x i32> %t2 ; <<2 x i32>> [#uses=1] - store <2 x i32> %t3, <2 x i32>* @bar - %c0 = add <2 x i32> < i32 1, i32 1 >, %t0 ; <<2 x i32>> [#uses=0] - %c1 = add <2 x i32> %t0, zeroinitializer ; <<2 x i32>> [#uses=0] - %c2 = select i1 true, <2 x i32> < i32 1, i32 1 >, <2 x i32> %t0 ; <<2 x i32>> [#uses=0] - store <2 x i32> < i32 4, i32 4 >, <2 x i32>* @foo - ret void -} - |