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