diff options
Diffstat (limited to 'test/FrontendC/2004-03-07-ExternalConstant.c')
-rw-r--r-- | test/FrontendC/2004-03-07-ExternalConstant.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/test/FrontendC/2004-03-07-ExternalConstant.c b/test/FrontendC/2004-03-07-ExternalConstant.c deleted file mode 100644 index 4a9094b..0000000 --- a/test/FrontendC/2004-03-07-ExternalConstant.c +++ /dev/null @@ -1,7 +0,0 @@ -// RUN: %llvmgcc -xc %s -S -o - | grep constant - -extern const int a[]; // 'a' should be marked constant even though it's external! -int foo () { - return a[0]; -} - |