aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-08-20 00:22:40 +0000
committerEric Christopher <echristo@apple.com>2011-08-20 00:22:40 +0000
commitf9a642f47e51ac66b91097f1f123e8ab0a06eb97 (patch)
tree753fae64c0b556e69fe5f857e8eb2a34955adab0
parentaeac10e7b074d87522ccc5fad919417092971c57 (diff)
Remove this file, it's not much of a test and string headers cause
problems on windows. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138166 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenCXX/2004-09-27-CompilerCrash.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp b/test/CodeGenCXX/2004-09-27-CompilerCrash.cpp
deleted file mode 100644
index 5e5af4ab60..0000000000
--- a/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();
-}