summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-09-22 06:09:31 +0000
committerChris Lattner <sabre@nondot.org>2010-09-22 06:09:31 +0000
commit398e6b90f5e161d520a95cbf34c732a55fd3e476 (patch)
treefc7149053f348c681f3a1e24de19e7f1583778e7
parent4ee5a6f9bd82ab3c1a4bdacc0caefe7d5f8bd37a (diff)
downloadclang-398e6b90f5e161d520a95cbf34c732a55fd3e476.tar.gz
update a bunch of tests that are using the x86 backend instead of grepping IR :(
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@114535 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenCXX/PR5050-constructor-conversion.cpp2
-rw-r--r--test/CodeGenCXX/array-construction.cpp2
-rw-r--r--test/CodeGenCXX/array-operator-delete-call.cpp2
-rw-r--r--test/CodeGenCXX/call-arg-zero-temp.cpp2
-rw-r--r--test/CodeGenCXX/cast-conversion.cpp12
-rw-r--r--test/CodeGenCXX/constructor-conversion.cpp6
-rw-r--r--test/CodeGenCXX/constructor-default-arg.cpp6
-rw-r--r--test/CodeGenCXX/constructor-for-array-members.cpp2
-rw-r--r--test/CodeGenCXX/convert-to-fptr.cpp4
-rw-r--r--test/CodeGenCXX/decl-ref-init.cpp4
-rw-r--r--test/CodeGenCXX/default-constructor-for-members.cpp2
-rw-r--r--test/CodeGenCXX/derived-to-base-conv.cpp4
-rw-r--r--test/CodeGenCXX/ptr-to-member-function.cpp4
-rw-r--r--test/CodeGenObjC/objc-read-weak-byref.m4
-rw-r--r--test/CodeGenObjC/objc2-weak-block-call.m4
15 files changed, 30 insertions, 30 deletions
diff --git a/test/CodeGenCXX/PR5050-constructor-conversion.cpp b/test/CodeGenCXX/PR5050-constructor-conversion.cpp
index 9103b8321f..aa75ea4592 100644
--- a/test/CodeGenCXX/PR5050-constructor-conversion.cpp
+++ b/test/CodeGenCXX/PR5050-constructor-conversion.cpp
@@ -13,6 +13,6 @@ A f(const B &b) {
// CHECK-LP64: callq __ZN1AC1ERKS_i
-// CHECK-LP32: call L__ZN1AC1ERKS_i
+// CHECK-LP32: calll L__ZN1AC1ERKS_i
diff --git a/test/CodeGenCXX/array-construction.cpp b/test/CodeGenCXX/array-construction.cpp
index ab46be72d8..d044ac5978 100644
--- a/test/CodeGenCXX/array-construction.cpp
+++ b/test/CodeGenCXX/array-construction.cpp
@@ -32,5 +32,5 @@ int main() {
// CHECK-LP64: callq __ZN4xptoC1Ev
-// CHECK-LP32: call L__ZN4xptoC1Ev
+// CHECK-LP32: calll L__ZN4xptoC1Ev
diff --git a/test/CodeGenCXX/array-operator-delete-call.cpp b/test/CodeGenCXX/array-operator-delete-call.cpp
index acb85d23b3..ad60cf6a67 100644
--- a/test/CodeGenCXX/array-operator-delete-call.cpp
+++ b/test/CodeGenCXX/array-operator-delete-call.cpp
@@ -59,5 +59,5 @@ COST c2;
// CHECK-LP64: callq __ZdaPv
-// CHECK-LP32: call L__ZdaPv
+// CHECK-LP32: calll L__ZdaPv
diff --git a/test/CodeGenCXX/call-arg-zero-temp.cpp b/test/CodeGenCXX/call-arg-zero-temp.cpp
index ed8118e07d..88e74523f5 100644
--- a/test/CodeGenCXX/call-arg-zero-temp.cpp
+++ b/test/CodeGenCXX/call-arg-zero-temp.cpp
@@ -19,4 +19,4 @@ int main() {
// CHECK-LP64: callq __Z3foo3obj
-// CHECK-LP32: call __Z3foo3obj
+// CHECK-LP32: calll __Z3foo3obj
diff --git a/test/CodeGenCXX/cast-conversion.cpp b/test/CodeGenCXX/cast-conversion.cpp
index 6dc6de6018..27e34b9d32 100644
--- a/test/CodeGenCXX/cast-conversion.cpp
+++ b/test/CodeGenCXX/cast-conversion.cpp
@@ -24,9 +24,9 @@ int main () {
// CHECK-LP64: callq __ZN1AC1Ei
// CHECK-LP64: callq __ZN1BC1E1A
-// CHECK-LP32: call L__ZN1AC1Ei
-// CHECK-LP32: call L__ZN1BC1E1A
-// CHECK-LP32: call L__ZN1AC1Ei
-// CHECK-LP32: call L__ZN1BC1E1A
-// CHECK-LP32: call L__ZN1AC1Ei
-// CHECK-LP32: call L__ZN1BC1E1A
+// CHECK-LP32: calll L__ZN1AC1Ei
+// CHECK-LP32: calll L__ZN1BC1E1A
+// CHECK-LP32: calll L__ZN1AC1Ei
+// CHECK-LP32: calll L__ZN1BC1E1A
+// CHECK-LP32: calll L__ZN1AC1Ei
+// CHECK-LP32: calll L__ZN1BC1E1A
diff --git a/test/CodeGenCXX/constructor-conversion.cpp b/test/CodeGenCXX/constructor-conversion.cpp
index f135da5e85..405bba67e8 100644
--- a/test/CodeGenCXX/constructor-conversion.cpp
+++ b/test/CodeGenCXX/constructor-conversion.cpp
@@ -49,6 +49,6 @@ int main() {
// CHECK-LP64: callq __ZN1XC1EPKci
// CHECK-LP64: callq __ZN1XC1Ev
-// CHECK-LP32: call L__ZN1XC1Ei
-// CHECK-LP32: call L__ZN1XC1EPKci
-// CHECK-LP32: call L__ZN1XC1Ev
+// CHECK-LP32: calll L__ZN1XC1Ei
+// CHECK-LP32: calll L__ZN1XC1EPKci
+// CHECK-LP32: calll L__ZN1XC1Ev
diff --git a/test/CodeGenCXX/constructor-default-arg.cpp b/test/CodeGenCXX/constructor-default-arg.cpp
index ec0b8da69b..0c08c7694e 100644
--- a/test/CodeGenCXX/constructor-default-arg.cpp
+++ b/test/CodeGenCXX/constructor-default-arg.cpp
@@ -34,6 +34,6 @@ int main() {
// CHECK-LP64: callq __ZN1XC1ERKS_iii
// CHECK-LP64: callq __ZN1XC1ERKS_iii
-// CHECK-LP32: call L__ZN1XC1ERKS_iii
-// CHECK-LP32: call L__ZN1XC1ERKS_iii
-// CHECK-LP32: call L__ZN1XC1ERKS_iii
+// CHECK-LP32: calll L__ZN1XC1ERKS_iii
+// CHECK-LP32: calll L__ZN1XC1ERKS_iii
+// CHECK-LP32: calll L__ZN1XC1ERKS_iii
diff --git a/test/CodeGenCXX/constructor-for-array-members.cpp b/test/CodeGenCXX/constructor-for-array-members.cpp
index b981da4973..fd6dc6dc15 100644
--- a/test/CodeGenCXX/constructor-for-array-members.cpp
+++ b/test/CodeGenCXX/constructor-for-array-members.cpp
@@ -40,4 +40,4 @@ int main() {
// CHECK-LP64: callq __ZN1SC1Ev
-// CHECK-LP32: call L__ZN1SC1Ev
+// CHECK-LP32: calll L__ZN1SC1Ev
diff --git a/test/CodeGenCXX/convert-to-fptr.cpp b/test/CodeGenCXX/convert-to-fptr.cpp
index dc49401af9..f895dbcaf6 100644
--- a/test/CodeGenCXX/convert-to-fptr.cpp
+++ b/test/CodeGenCXX/convert-to-fptr.cpp
@@ -41,6 +41,6 @@ int main()
// CHECK-LP64: callq __ZN1AcvPFiiEEv
// CHECK-LP64: callq __ZN1BcvRFiiEEv
-// CHECK-LP32: call L__ZN1AcvPFiiEEv
-// CHECK-LP32: call L__ZN1BcvRFiiEEv
+// CHECK-LP32: calll L__ZN1AcvPFiiEEv
+// CHECK-LP32: calll L__ZN1BcvRFiiEEv
diff --git a/test/CodeGenCXX/decl-ref-init.cpp b/test/CodeGenCXX/decl-ref-init.cpp
index c215b1b9be..58fdedabc3 100644
--- a/test/CodeGenCXX/decl-ref-init.cpp
+++ b/test/CodeGenCXX/decl-ref-init.cpp
@@ -26,5 +26,5 @@ int main() {
// CHECK-LP64: callq __ZN1BcvR1AEv
// CHECK-LP64: callq __ZN1BcvR1AEv
-// CHECK-LP32: call L__ZN1BcvR1AEv
-// CHECK-LP32: call L__ZN1BcvR1AEv
+// CHECK-LP32: calll L__ZN1BcvR1AEv
+// CHECK-LP32: calll L__ZN1BcvR1AEv
diff --git a/test/CodeGenCXX/default-constructor-for-members.cpp b/test/CodeGenCXX/default-constructor-for-members.cpp
index 1f17746023..a97764ddcf 100644
--- a/test/CodeGenCXX/default-constructor-for-members.cpp
+++ b/test/CodeGenCXX/default-constructor-for-members.cpp
@@ -20,4 +20,4 @@ int main() {
// CHECK-LP64: callq __ZN1SC1Ev
-// CHECK-LP32: call L__ZN1SC1Ev
+// CHECK-LP32: calll L__ZN1SC1Ev
diff --git a/test/CodeGenCXX/derived-to-base-conv.cpp b/test/CodeGenCXX/derived-to-base-conv.cpp
index f2835b7a29..006f264337 100644
--- a/test/CodeGenCXX/derived-to-base-conv.cpp
+++ b/test/CodeGenCXX/derived-to-base-conv.cpp
@@ -78,7 +78,7 @@ void test(Derived bb)
// CHECK-LP64: callq __ZN1XcvR1BEv
// CHECK-LP64: callq __ZN1AC1ERKS_
-// CHECK-LP32: call L__ZN1XcvR1BEv
-// CHECK-LP32: call L__ZN1AC1ERKS_
+// CHECK-LP32: calll L__ZN1XcvR1BEv
+// CHECK-LP32: calll L__ZN1AC1ERKS_
diff --git a/test/CodeGenCXX/ptr-to-member-function.cpp b/test/CodeGenCXX/ptr-to-member-function.cpp
index e3912fe908..89db142b9b 100644
--- a/test/CodeGenCXX/ptr-to-member-function.cpp
+++ b/test/CodeGenCXX/ptr-to-member-function.cpp
@@ -66,5 +66,5 @@ int main()
// CHECK-LP64: callq __ZN1XcvM1BFvvEEv
// CHECK-LP64: callq __Z1gM1CFvvE
-// CHECK-LP32: call L__ZN1XcvM1BFvvEEv
-// CHECK-LP32: call __Z1gM1CFvvE
+// CHECK-LP32: calll L__ZN1XcvM1BFvvEEv
+// CHECK-LP32: calll __Z1gM1CFvvE
diff --git a/test/CodeGenObjC/objc-read-weak-byref.m b/test/CodeGenObjC/objc-read-weak-byref.m
index 1ddbcaffac..fa7a6f9821 100644
--- a/test/CodeGenObjC/objc-read-weak-byref.m
+++ b/test/CodeGenObjC/objc-read-weak-byref.m
@@ -21,5 +21,5 @@ int main() {
// CHECK-LP64: callq _objc_read_weak
// CHECK-LP64: callq _objc_read_weak
-// CHECK-LP32: call L_objc_read_weak
-// CHECK-LP32: call L_objc_read_weak
+// CHECK-LP32: calll L_objc_read_weak
+// CHECK-LP32: calll L_objc_read_weak
diff --git a/test/CodeGenObjC/objc2-weak-block-call.m b/test/CodeGenObjC/objc2-weak-block-call.m
index a3514b0caa..4f7b554f45 100644
--- a/test/CodeGenObjC/objc2-weak-block-call.m
+++ b/test/CodeGenObjC/objc2-weak-block-call.m
@@ -24,6 +24,6 @@ void foo(MyView *(^obj)(void)) ;
// CHECK-LP64: callq _objc_read_weak
// CHECK-LP64: callq _objc_read_weak
-// CHECK-LP32: call L_objc_read_weak
-// CHECK-LP32: call L_objc_read_weak
+// CHECK-LP32: calll L_objc_read_weak
+// CHECK-LP32: calll L_objc_read_weak