diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-20 00:17:58 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-20 00:17:58 +0000 |
commit | ca020c124eacc6edede13535d9effb152fe699fd (patch) | |
tree | 8f112373335214674f15cff7d8493e1159acd6bc /test/FrontendC++/2004-01-11-DynamicInitializedConstant.cpp | |
parent | ac3656ed7a67eaacb8d2c62e1841ed4df799f72a (diff) |
Remove the rest of the files in FrontendC++ and the directory itself.
All tests have been updated and migrated into clang or were obsolete.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138165 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2004-01-11-DynamicInitializedConstant.cpp')
-rw-r--r-- | test/FrontendC++/2004-01-11-DynamicInitializedConstant.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/FrontendC++/2004-01-11-DynamicInitializedConstant.cpp b/test/FrontendC++/2004-01-11-DynamicInitializedConstant.cpp deleted file mode 100644 index 8ae15c9592..0000000000 --- a/test/FrontendC++/2004-01-11-DynamicInitializedConstant.cpp +++ /dev/null @@ -1,6 +0,0 @@ -// RUN: %llvmgcc -xc++ -S -o - %s | not grep { constant } - -extern int X; -const int Y = X; -const int* foo() { return &Y; } - |