diff options
author | Chris Lattner <sabre@nondot.org> | 2007-08-01 18:37:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-08-01 18:37:44 +0000 |
commit | 695e1c69a86e6ee36fa39607f4d86af0dcba712a (patch) | |
tree | 20ee5cb919ba3ce0a1b4034c11ea7d208a789779 | |
parent | b59e985cdbc7d25a9af5b3c0bb0ad039db1c9fbf (diff) |
these tests aren't xfailed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40680 91177308-0d34-0410-b5e6-96231b3b80d8
-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; |