summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2010-06-17 15:18:27 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2010-06-17 15:18:27 +0000
commit1e81966626635c99bcb77d9291b7f185f2159e2b (patch)
tree364e927a8a42392926033780cbef2d996489e99d /test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll
parentba6fc63eb291abb40ddf05ef91642a9cac9a90d1 (diff)
downloadllvm-1e81966626635c99bcb77d9291b7f185f2159e2b.tar.gz
llvm-1e81966626635c99bcb77d9291b7f185f2159e2b.tar.bz2
llvm-1e81966626635c99bcb77d9291b7f185f2159e2b.tar.xz
Remove arm_apcscc from the test files. It is the default and doing this
matches what llvm-gcc and clang now produce. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106221 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll')
-rw-r--r--test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll b/test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll
index 79ad0a9126..8ca001c7d7 100644
--- a/test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll
+++ b/test/CodeGen/Thumb2/2009-12-01-LoopIVUsers.ll
@@ -1,7 +1,7 @@
; RUN: opt < %s -std-compile-opts | \
; RUN: llc -mtriple=thumbv7-apple-darwin10 -mattr=+neon | FileCheck %s
-define arm_apcscc void @fred(i32 %three_by_three, i8* %in, double %dt1, i32 %x_size, i32 %y_size, i8* %bp) nounwind {
+define void @fred(i32 %three_by_three, i8* %in, double %dt1, i32 %x_size, i32 %y_size, i8* %bp) nounwind {
entry:
; -- The loop following the load should only use a single add-literation
; instruction.
@@ -45,7 +45,7 @@ entry:
store i8* %bp, i8** %bp_addr
%0 = load i8** %in_addr, align 4 ; <i8*> [#uses=1]
store i8* %0, i8** %out, align 4
- %1 = call arm_apcscc i32 (...)* @foo() nounwind ; <i32> [#uses=1]
+ %1 = call i32 (...)* @foo() nounwind ; <i32> [#uses=1]
store i32 %1, i32* %i, align 4
%2 = load i32* %three_by_three_addr, align 4 ; <i32> [#uses=1]
%3 = icmp eq i32 %2, 0 ; <i1> [#uses=1]
@@ -76,7 +76,7 @@ bb3: ; preds = %bb2, %bb
%15 = load i32* %n_max, align 4 ; <i32> [#uses=1]
%16 = load i32* %n_max, align 4 ; <i32> [#uses=1]
%17 = mul i32 %15, %16 ; <i32> [#uses=1]
- %18 = call arm_apcscc noalias i8* @malloc(i32 %17) nounwind ; <i8*> [#uses=1]
+ %18 = call noalias i8* @malloc(i32 %17) nounwind ; <i8*> [#uses=1]
store i8* %18, i8** %dp, align 4
%19 = load i8** %dp, align 4 ; <i8*> [#uses=1]
store i8* %19, i8** %dpt, align 4
@@ -123,6 +123,6 @@ return: ; preds = %bb6
ret void
}
-declare arm_apcscc i32 @foo(...)
+declare i32 @foo(...)
-declare arm_apcscc noalias i8* @malloc(i32) nounwind
+declare noalias i8* @malloc(i32) nounwind