diff options
-rw-r--r-- | test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr | 2 | ||||
-rw-r--r-- | test/C++Frontend/2003-11-18-MemberInitializationCasting.cpp.tr | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr b/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr index 0475002c51..3596d68e5d 100644 --- a/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr +++ b/test/C++Frontend/2003-11-09-ConstructorTypeSafety.cpp.tr @@ -1,5 +1,5 @@ // The code generated for this testcase should be completely typesafe! -// RUN: %llvmgcc -xc++ -S -o - %s | not grep ' cast ' +// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | not grep ' cast ' 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 02b162ce91..1d607a2ac9 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 | not grep ' cast ' +// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | not grep ' cast ' struct A { A() : i(0) {} |