summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2007-06-06 20:46:40 +0000
committerTanya Lattner <tonic@nondot.org>2007-06-06 20:46:40 +0000
commit77c2b692e2b8b8de4982ff4cafd570477484f10c (patch)
tree711e8358b1a40de9d8fa5897333b288a72ec35d8
parent7d832fe6c1a15c5d0ae65d5c71fd7dcec12c551e (diff)
downloadllvm-77c2b692e2b8b8de4982ff4cafd570477484f10c.tar.gz
llvm-77c2b692e2b8b8de4982ff4cafd570477484f10c.tar.bz2
llvm-77c2b692e2b8b8de4982ff4cafd570477484f10c.tar.xz
Revert changes for noinline.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37476 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr2
-rw-r--r--test/C++Frontend/2003-11-18-MemberInitializationCasting.cpp.tr2
-rw-r--r--test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp2
-rw-r--r--test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c.tr2
4 files changed, 4 insertions, 4 deletions
diff --git a/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr b/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr
index 0c1395dea0..e6c09e5bfe 100644
--- a/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr
+++ b/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr
@@ -1,6 +1,6 @@
// The code generated for this testcase should be completely typesafe!
// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | \
-// RUN: grep -v llvm.noinline | notcast
+// RUN: notcast
struct contained {
unsigned X;
diff --git a/test/C++Frontend/2003-11-18-MemberInitializationCasting.cpp.tr b/test/C++Frontend/2003-11-18-MemberInitializationCasting.cpp.tr
index 0bfb5dc54e..cb66ba1127 100644
--- a/test/C++Frontend/2003-11-18-MemberInitializationCasting.cpp.tr
+++ b/test/C++Frontend/2003-11-18-MemberInitializationCasting.cpp.tr
@@ -1,4 +1,4 @@
-// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | grep -v llvm.noinline | notcast
+// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | notcast
struct A {
A() : i(0) {}
diff --git a/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp b/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp
index eac7784274..7711cff6d3 100644
--- a/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp
+++ b/test/C++Frontend/2005-07-21-VirtualBaseAccess.cpp
@@ -1,4 +1,4 @@
-// RUN: %llvmgxx -xc++ %s -c -o - | opt -die | llvm-dis | grep -v llvm.noinline | not grep cast
+// RUN: %llvmgxx -xc++ %s -c -o - | opt -die | llvm-dis | not grep cast
void foo(int*);
diff --git a/test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c.tr b/test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c.tr
index 1f30230642..51e66c9b83 100644
--- a/test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c.tr
+++ b/test/CFrontend/2003-07-22-ArrayAccessTypeSafety.c.tr
@@ -1,4 +1,4 @@
-/* RUN: %llvmgcc -xc %s -S -o - | grep -v alloca | grep -v llvm.noinline | not grep bitcast
+/* RUN: %llvmgcc -xc %s -S -o - | grep -v alloca | not grep bitcast
*/
void test(int* array, long long N) {