these tests aren't xfailed.
authorChris Lattner <sabre@nondot.org>
Wed, 1 Aug 2007 18:37:44 +0000 (18:37 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 1 Aug 2007 18:37:44 +0000 (18:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40680 91177308-0d34-0410-b5e6-96231b3b80d8

test/C++Frontend/2007-07-29-RestrictPtrArg.cpp
test/C++Frontend/2007-07-29-RestrictRefArg.cpp

index 38da95ae6c8e3364776050063af18a413a222c2e..d54dfbe57121d3ab987824a50c44399087156dd1 100644 (file)
@@ -1,5 +1,4 @@
 // RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep noalias
-// NOTE: This should be un-XFAILed when the C++ type qualifiers are fixed
 
 void foo(int * __restrict myptr1, int * myptr2) {
   myptr1[0] = 0;
index cba86b9a76d97182ac4a89421fb20c9b672fc131..0c28e4d27a2bb05037a105950339c2cd0dd20d4d 100644 (file)
@@ -1,5 +1,4 @@
 // RUN: %llvmgxx -c -emit-llvm %s -o - | llvm-dis | grep noalias
-// NOTE: This should be un-XFAILed when the C++ type qualifiers are fixed
 
 void foo(int & __restrict myptr1, int & myptr2) {
   myptr1 = 0;