aboutsummaryrefslogtreecommitdiffstats
path: root/test/C++Frontend
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2007-06-06 05:53:50 +0000
committerTanya Lattner <tonic@nondot.org>2007-06-06 05:53:50 +0000
commit49fdfdb1e5f7b025bf8a4e81e7558b49f0005dd4 (patch)
tree47c2d30c3aef612d0671b50a1d273940651f3678 /test/C++Frontend
parent9d0332f7b4d8aa8e07544506eb26d1e155c3745a (diff)
downloadexternal_llvm-49fdfdb1e5f7b025bf8a4e81e7558b49f0005dd4.zip
external_llvm-49fdfdb1e5f7b025bf8a4e81e7558b49f0005dd4.tar.gz
external_llvm-49fdfdb1e5f7b025bf8a4e81e7558b49f0005dd4.tar.bz2
Ignore llvm.noinline
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37460 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend')
-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
3 files changed, 3 insertions, 3 deletions
diff --git a/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr b/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr
index 2b3b8b1..0c1395d 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: notcast
+// RUN: grep -v llvm.noinline | 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 3029082..0bfb5dc 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 | notcast
+// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | grep -v llvm.noinline | 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 7711cff..eac7784 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 | not grep cast
+// RUN: %llvmgxx -xc++ %s -c -o - | opt -die | llvm-dis | grep -v llvm.noinline | not grep cast
void foo(int*);