Go to file
Richard Trieu f4b81d0029 Provide a better diagnostic when braces are put before the identifier.
When a user types:
  int [4] foo;
assume that the user means:
  int foo[4];

Update the information for 'foo' to prevent additional errors, and provide
a fix-it hint to move the brackets to the correct location.

Additionally, suggest parens for types that require it, such as:
  int [4] *foo;
to:
  int (*foo)[4];

llvm-svn: 211641
2014-06-24 23:14:24 +00:00
clang Provide a better diagnostic when braces are put before the identifier. 2014-06-24 23:14:24 +00:00
clang-tools-extra Track changes from clang r211448. 2014-06-21 23:33:00 +00:00
compiler-rt Remove ARM XFAIL from passing test 2014-06-24 16:58:59 +00:00
debuginfo-tests relax testcase for LLDB output format compatibility. 2014-03-19 23:06:18 +00:00
libclc Add half limits 2014-06-24 09:51:01 +00:00
libcxx eliminate install of duplicate headers (take 2) 2014-06-24 20:32:11 +00:00
libcxxabi Add a FAQ section, with a question about why the std::exception class destructors live in libc++abi 2014-06-11 16:54:09 +00:00
lld Update for llvm api change. 2014-06-24 13:57:13 +00:00
lldb Patch from Keno Fischer to enable JITLoaderGDB with mach-o file support. 2014-06-24 22:22:43 +00:00
llvm llvm/test/MC/AArch64/ldr-pseudo-obj-errors.s: Add -triple=aarch64-linux. AArch64 is unaware of PECOFF for now. 2014-06-24 23:11:42 +00:00
openmp CMake: remove duplicated source file from list 2014-06-02 13:09:24 +00:00
polly [Refactor] Create nicer test cases from C/C++ 2014-06-24 17:02:53 +00:00