1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

these tests aren't xfailed.

llvm-svn: 40680
This commit is contained in:
Chris Lattner 2007-08-01 18:37:44 +00:00
parent 5d3a429915
commit 0b930d11c7
2 changed files with 0 additions and 2 deletions

View 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;

View 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;