From 695e1c69a86e6ee36fa39607f4d86af0dcba712a Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 1 Aug 2007 18:37:44 +0000 Subject: [PATCH] these tests aren't xfailed. 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 | 1 - test/C++Frontend/2007-07-29-RestrictRefArg.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/test/C++Frontend/2007-07-29-RestrictPtrArg.cpp b/test/C++Frontend/2007-07-29-RestrictPtrArg.cpp index 38da95ae6c8..d54dfbe5712 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 cba86b9a76d..0c28e4d27a2 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; -- 2.34.1