diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-16 22:31:46 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-16 22:31:46 +0000 |
commit | 4b8c4b35e39160cc58db7cd8de1f24ae897857ff (patch) | |
tree | 424f7e73ab083353d38e238d7e99cde5e56be57e /test/Integer/instructions_bt.ll | |
parent | cd9192f4f4530f35fb7c989d1d09ff371bcbc389 (diff) |
Fix test cases. Patch by Guoling Han.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33272 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Integer/instructions_bt.ll')
-rw-r--r-- | test/Integer/instructions_bt.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Integer/instructions_bt.ll b/test/Integer/instructions_bt.ll index d59ecb930f..e10fe9e3dd 100644 --- a/test/Integer/instructions_bt.ll +++ b/test/Integer/instructions_bt.ll @@ -1,21 +1,21 @@ ; RUN: llvm-as %s -o - | llvm-dis > %t1.ll ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll ; RUN: diff %t1.ll %t2.ll -; XFAIL: * + define i39 %test_extractelement(<4 x i39> %V) { - %R = extractelement <4 x i39> %V, i39 1 + %R = extractelement <4 x i39> %V, i32 1 ret i39 %R } define <4 x i39> %test_insertelement(<4 x i39> %V) { - %R = insertelement <4 x i39> %V, i39 0, i39 0 + %R = insertelement <4 x i39> %V, i39 0, i32 0 ret <4 x i39> %R } define <4 x i39> %test_shufflevector_u(<4 x i39> %V) { %R = shufflevector <4 x i39> %V, <4 x i39> %V, - <4 x i39> < i39 1, i39 undef, i39 7, i39 2> + <4 x i32> < i32 1, i32 undef, i32 7, i32 2> ret <4 x i39> %R } |