diff options
-rw-r--r-- | test/C++Frontend/2007-07-29-RestrictPtrArg.cpp | 1 | ||||
-rw-r--r-- | test/C++Frontend/2007-07-29-RestrictRefArg.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/test/C++Frontend/2007-07-29-RestrictPtrArg.cpp b/test/C++Frontend/2007-07-29-RestrictPtrArg.cpp index 38da95ae6c..d54dfbe571 100644 --- a/test/C++Frontend/2007-07-29-RestrictPtrArg.cpp +++ b/test/C++Frontend/2007-07-29-RestrictPtrArg.cpp @@ -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; diff --git a/test/C++Frontend/2007-07-29-RestrictRefArg.cpp b/test/C++Frontend/2007-07-29-RestrictRefArg.cpp index cba86b9a76..0c28e4d27a 100644 --- a/test/C++Frontend/2007-07-29-RestrictRefArg.cpp +++ b/test/C++Frontend/2007-07-29-RestrictRefArg.cpp @@ -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; |