]> granicus.if.org Git - clang/commitdiff
Remove this test. It requires C++ standard library headers, which we'd
authorChandler Carruth <chandlerc@gmail.com>
Sat, 20 Aug 2011 06:30:57 +0000 (06:30 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Sat, 20 Aug 2011 06:30:57 +0000 (06:30 +0000)
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.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138197 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/2003-11-25-ReturningOpaqueByValue.cpp [deleted file]

diff --git a/test/CodeGenCXX/2003-11-25-ReturningOpaqueByValue.cpp b/test/CodeGenCXX/2003-11-25-ReturningOpaqueByValue.cpp
deleted file mode 100644 (file)
index dfe2aa1..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// RUN: %clang_cc1 -emit-llvm %s -o -
-
-// FIXME: Avoid using system headers. clang cannot handle MS <vector> yet.
-// XFAIL: win32
-#include <vector>
-std::vector<int> my_method ();
-
-int
-main ()
-{
-  my_method ();
-  return 0;
-}