From 4e6bd3955f824db258a7cd81157539323fb140be Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sat, 20 Aug 2011 06:30:57 +0000 Subject: [PATCH] Remove this test. It requires C++ standard library headers, which we'd like to avoid within the Clang test suite, it doesn't verify the output at all so it only servers as a test that Clang doesn't crash, and finally all it does is declare a function that returns a vector and call it. Probably the biggest thing being tested here is Clang's parsing of the vector template, and we have lots of good template parsing tests. We don't need another in codegen. llvm-svn: 138197 --- .../2003-11-25-ReturningOpaqueByValue.cpp | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 clang/test/CodeGenCXX/2003-11-25-ReturningOpaqueByValue.cpp diff --git a/clang/test/CodeGenCXX/2003-11-25-ReturningOpaqueByValue.cpp b/clang/test/CodeGenCXX/2003-11-25-ReturningOpaqueByValue.cpp deleted file mode 100644 index dfe2aa1eb43e..000000000000 --- a/clang/test/CodeGenCXX/2003-11-25-ReturningOpaqueByValue.cpp +++ /dev/null @@ -1,13 +0,0 @@ -// RUN: %clang_cc1 -emit-llvm %s -o - - -// FIXME: Avoid using system headers. clang cannot handle MS yet. -// XFAIL: win32 -#include -std::vector my_method (); - -int -main () -{ - my_method (); - return 0; -}