diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-01-30 00:40:23 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-01-30 00:40:23 +0000 |
commit | 8ad1f0e28456f67cbaa4381063795b1c263550a3 (patch) | |
tree | 227247cb58e5d166d056e96a352fff8590c4987a /test | |
parent | 728e5eb92707f2c5b2af796dddf3acbdd3ccd64d (diff) | |
download | external_llvm-8ad1f0e28456f67cbaa4381063795b1c263550a3.zip external_llvm-8ad1f0e28456f67cbaa4381063795b1c263550a3.tar.gz external_llvm-8ad1f0e28456f67cbaa4381063795b1c263550a3.tar.bz2 |
Remove ARM-specific calling convention from this test. Target data is
needed for this test, but otherwise, there's nothing ARM-specific about
it and no need to specify the calling convention.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94862 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/Transforms/InstCombine/load-select.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Transforms/InstCombine/load-select.ll b/test/Transforms/InstCombine/load-select.ll index 707d337..f3d83dc 100644 --- a/test/Transforms/InstCombine/load-select.ll +++ b/test/Transforms/InstCombine/load-select.ll @@ -4,7 +4,7 @@ target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:32- @a = constant [2 x i32] [i32 3, i32 6] ; <[2 x i32]*> [#uses=2] -define arm_apcscc i32 @b(i32 %y) nounwind readonly { +define i32 @b(i32 %y) nounwind readonly { ; CHECK: @b ; CHECK-NOT: load ; CHECK: ret i32 |