diff options
author | Eric Christopher <echristo@apple.com> | 2011-08-20 00:22:40 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-08-20 00:22:40 +0000 |
commit | 50507663a6543f185163cd67821a24116736f04c (patch) | |
tree | 5a5e1d4c345f30e0efa48ad41403303a58e114ae /clang/test/CodeGenCXX | |
parent | 2f53dc2e052b59fd455d7a4cb3dbebc3400aed91 (diff) | |
download | bcm5719-llvm-50507663a6543f185163cd67821a24116736f04c.tar.gz bcm5719-llvm-50507663a6543f185163cd67821a24116736f04c.zip |
Remove this file, it's not much of a test and string headers cause
problems on windows.
llvm-svn: 138166
Diffstat (limited to 'clang/test/CodeGenCXX')
-rw-r--r-- | clang/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/clang/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp b/clang/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp deleted file mode 100644 index 5e5af4ab602..00000000000 --- a/clang/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %clang_cc1 -emit-llvm %s -o - - -struct Pass {} ; -template<typename PassName> -Pass *callDefaultCtor() { return new PassName(); } - -void foo(Pass *(*C)()); - -#include <string> - -bool foo(std::string &X) { - return X.empty(); -} |