https://llvm.org/bugs/show_bug.cgi?id=25918
Bug ID: 25918 Summary: Misleading altivec error message when using an unsupported element type in C++ Product: clang Version: trunk Hardware: PC OS: All Status: NEW Severity: enhancement Priority: P Component: -New Bugs Assignee: unassignedclangb...@nondot.org Reporter: george.burgess...@gmail.com CC: llvm-bugs@lists.llvm.org Classification: Unclassified When using an altivec vector with (what I'd assume is) an unsupported element type, the diagnostic that clang emits is suboptimal: $ cat baderror.cpp int foo() { vector bool a; } $ ~/llvm/llvm-commit/build/release/bin/clang++ -cc1 -faltivec -triple powerpc-unknown-unknown baderror.cpp baderror.cpp:1:25: error: C++ requires a type specifier for all declarations int foo() { vector bool a; } ~~~~~~~~~~~ ^ 1 error generated. -- You are receiving this mail because: You are on the CC list for the bug.
_______________________________________________ llvm-bugs mailing list llvm-bugs@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs