diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-13 04:25:24 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-13 04:25:24 +0000 |
commit | 2a03c04424c76a587e0694c96ac165e1749d8a1e (patch) | |
tree | 40f1c9e975435d35d0d26a8627fdbe1453b967a6 /test/FrontendC++/2003-11-18-MemberInitializationCasting.cpp | |
parent | e12ee4b7380fdfd545f0f211dd6b9f867ebf9b24 (diff) |
remove two old and nearly useless tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/FrontendC++/2003-11-18-MemberInitializationCasting.cpp')
-rw-r--r-- | test/FrontendC++/2003-11-18-MemberInitializationCasting.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/FrontendC++/2003-11-18-MemberInitializationCasting.cpp b/test/FrontendC++/2003-11-18-MemberInitializationCasting.cpp deleted file mode 100644 index cb66ba1127..0000000000 --- a/test/FrontendC++/2003-11-18-MemberInitializationCasting.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %llvmgcc -xc++ -S -o - %s | llvm-as | opt -die | llvm-dis | notcast - -struct A { - A() : i(0) {} - int getI() {return i;} - int i; -}; - -int f(int j) -{ - A a; - return j+a.getI(); -} |