From 481fe50903a66fc8d444f55bb4bede84a8a119d3 Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 10 Aug 2009 03:01:36 +0000 Subject: Revert r78535, it is causing a number of failures to build projects. --- Reverse-merging r78535 into '.': D test/Sema/altivec-init.c U include/clang/Basic/DiagnosticSemaKinds.td U include/clang/AST/Expr.h U include/clang/AST/StmtNodes.def U include/clang/Parse/Parser.h U include/clang/Parse/Action.h U tools/clang-cc/clang-cc.cpp U lib/Frontend/PrintParserCallbacks.cpp U lib/CodeGen/CGExprScalar.cpp U lib/Sema/SemaInit.cpp U lib/Sema/Sema.h U lib/Sema/SemaExpr.cpp U lib/Sema/SemaTemplateInstantiateExpr.cpp U lib/AST/StmtProfile.cpp U lib/AST/Expr.cpp U lib/AST/StmtPrinter.cpp U lib/Parse/ParseExpr.cpp U lib/Parse/ParseExprCXX.cpp llvm-svn: 78551 --- clang/test/Sema/altivec-init.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 clang/test/Sema/altivec-init.c (limited to 'clang/test/Sema/altivec-init.c') diff --git a/clang/test/Sema/altivec-init.c b/clang/test/Sema/altivec-init.c deleted file mode 100644 index 6185186903b..00000000000 --- a/clang/test/Sema/altivec-init.c +++ /dev/null @@ -1,16 +0,0 @@ -// RUN: clang-cc %s -faltivec -verify -pedantic -fsyntax-only -fblocks=0 - -typedef int v4 __attribute((vector_size(16))); -typedef short v8 __attribute((vector_size(16))); - -v8 foo(void) { - v8 a; - v4 b; - a = (v8){4, 2}; // expected-error {{too few elements in vector initialization (expected 8 elements, have 2)}} - b = (v4)(5, 6, 7, 8, 9); // expected-warning {{excess elements in vector initializer}} - b = (v4)(5, 6, 8, 8.0f); - return (v8){0, 1, 2, 3, 1, 2, 3, 4}; - - // FIXME: test that (type)(fn)(args) still works with -faltivec - // FIXME: test that c++ overloaded commas still work -faltivec -} -- cgit v1.2.3