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 | 22c05f7ba8affdf1e5ebeba6dce77098dbcea8d3 (patch) | |
tree | 20ee5cb919ba3ce0a1b4034c11ea7d208a789779 | |
parent | c3ed36857416182c09c11173b13aa5cef35fba36 (diff) | |
download | external_llvm-22c05f7ba8affdf1e5ebeba6dce77098dbcea8d3.zip external_llvm-22c05f7ba8affdf1e5ebeba6dce77098dbcea8d3.tar.gz external_llvm-22c05f7ba8affdf1e5ebeba6dce77098dbcea8d3.tar.bz2 |
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 38da95a..d54dfbe 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 cba86b9..0c28e4d 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; |