diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-20 00:08:36 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-20 00:08:36 +0000 |
commit | 74cfab0fbef4215fe349d43b733ce3bd8ce5755f (patch) | |
tree | 7ee040eb97bf026d6184927074ae03aa5123b5f1 /llvm/test/FrontendC++/2004-09-27-CompilerCrash.cpp | |
parent | fa7bc2f1a3916e7b22838a3a7ab866aaf614be76 (diff) | |
download | bcm5719-llvm-74cfab0fbef4215fe349d43b733ce3bd8ce5755f.tar.gz bcm5719-llvm-74cfab0fbef4215fe349d43b733ce3bd8ce5755f.zip |
Remove migrated or obsolete tests.
llvm-svn: 138156
Diffstat (limited to 'llvm/test/FrontendC++/2004-09-27-CompilerCrash.cpp')
-rw-r--r-- | llvm/test/FrontendC++/2004-09-27-CompilerCrash.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/llvm/test/FrontendC++/2004-09-27-CompilerCrash.cpp b/llvm/test/FrontendC++/2004-09-27-CompilerCrash.cpp deleted file mode 100644 index f52baaf7058..00000000000 --- a/llvm/test/FrontendC++/2004-09-27-CompilerCrash.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %llvmgxx -S %s -o - | llvm-as -o /dev/null - -struct Pass {} ; -template<typename PassName> -Pass *callDefaultCtor() { return new PassName(); } - -void foo(Pass *(*C)()); - -#include <string> - -bool foo(std::string &X) { - return X.empty(); -} |