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