diff options
Diffstat (limited to 'test/FrontendC++/2007-07-29-RestrictRefArg.cpp')
-rw-r--r-- | test/FrontendC++/2007-07-29-RestrictRefArg.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/FrontendC++/2007-07-29-RestrictRefArg.cpp b/test/FrontendC++/2007-07-29-RestrictRefArg.cpp deleted file mode 100644 index 128ddb3..0000000 --- a/test/FrontendC++/2007-07-29-RestrictRefArg.cpp +++ /dev/null @@ -1,6 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | grep noalias - -void foo(int & __restrict myptr1, int & myptr2) { - myptr1 = 0; - myptr2 = 0; -} |