diff options
Diffstat (limited to 'test/FrontendC++/2007-08-01-RestrictMethod.cpp')
-rw-r--r-- | test/FrontendC++/2007-08-01-RestrictMethod.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/FrontendC++/2007-08-01-RestrictMethod.cpp b/test/FrontendC++/2007-08-01-RestrictMethod.cpp deleted file mode 100644 index feefaa1..0000000 --- a/test/FrontendC++/2007-08-01-RestrictMethod.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | grep noalias - - -class foo { - int member[4]; - - void bar(int * a); - -}; - -void foo::bar(int * a) __restrict { - member[3] = *a; -} |