1. 0c706c2 Add list initialization for complex numbers in C. Essentially, this allows "_Complex float x = {1.0f, 2.0f};". See changes to docs/LanguageExtensions.html for a longer description. by Eli Friedman · 13 years ago
  2. cd9ec3b Implement the GNU C extension which permits the initialization of an by Douglas Gregor · 13 years ago
  3. 09865a9 PR3344: Downgrade "too many braces around scalar initializer" to a warning. by Eli Friedman · 14 years ago
  4. 0333296 Reword the empty struct/union warning in C to note that such structs and unions have size 0 in C, size 1 in C++. Put this warning under -Wc++-compat. by Douglas Gregor · 14 years ago
  5. 08a4190 Improve diagnostics like "initializing <type> from an expression of by Douglas Gregor · 14 years ago
  6. d4eea83 Improve diagnostics when we fail to convert from a source type to a by Douglas Gregor · 14 years ago
  7. cfdc81a Initialization improvements: addition of string initialization and a few by Eli Friedman · 15 years ago
  8. a572887 Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'. by Daniel Dunbar · 15 years ago
  9. 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
  10. d1969d8 Prep for new warning. by Mike Stump · 15 years ago
  11. e540858 Make sure we don't give the wrong warning, and make sure not to set by Eli Friedman · 15 years ago
  12. 759f252 PR3009: Get rid of bogus warning for scalar compound literals. by Eli Friedman · 15 years ago
  13. d7d5f02 Rename clang to clang-cc. by Daniel Dunbar · 15 years ago
  14. a645796 Allow flexible array initializers that are not surrounded by by Douglas Gregor · 15 years ago
  15. 7c53ca6 Downgrade the "excess elements in initializer" errors to warnings *in by Douglas Gregor · 15 years ago
  16. eeb15d4 Implement semantic analysis for the GNU flexible array initialization by Douglas Gregor · 16 years ago
  17. b574e56 Upgrade the "excess elements in array initializer" warning to an by Douglas Gregor · 16 years ago
  18. 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
  19. 1367ede 64-bit test fixes. by Sebastian Redl · 16 years ago
  20. 62b6a65 readd test as it passes correctly. nice, but weird by Nuno Lopes · 16 years ago
  21. 6d4abe1 Backing out r55607 due to logic errors and test regression. by Eli Friedman · 16 years ago
  22. 73419bf fix one more this-is-not-a-constant error. test included by Nuno Lopes · 16 years ago
  23. f7e37ce make CheckArithmeticConstantExpression() aware of &foo and pointers by Nuno Lopes · 16 years ago
  24. 396f0bf Support initialization of incomplete array with zero size (as extension). by Daniel Dunbar · 16 years ago
  25. d880363 wrap some long diagnostics, make 'initializer is not a constant' diagnostic by Chris Lattner · 16 years ago
  26. f84eda3 Count the number of initializable members correctly in structs/unions by Eli Friedman · 16 years ago
  27. 402256f Diagnose implicit init list for empty aggregate, like struct {}. Fixes by Eli Friedman · 16 years ago
  28. 638e144 Move the error checking for variable-sized objects so we don't by Eli Friedman · 16 years ago
  29. c56c977 Switch on SemaInit; this makes some code in SemaDecl dead, but I'll give by Eli Friedman · 16 years ago
  30. fd89bc8 Fix PR2017 and silence some bogus errors. by Chris Lattner · 16 years ago
  31. a7ad98f Fix PR1992 by computing the right type for string literals, which by Chris Lattner · 16 years ago
  32. 578edc6 by Steve Naroff · 17 years ago
  33. a996033 by Steve Naroff · 17 years ago
  34. ca10730 Sema::CheckInitializerTypes(). Start simpliying and cleaning up... by Steve Naroff · 17 years ago
  35. b7b6115 add comments for the various AssignConvertType's, and split int->pointer from pointer->int. by Chris Lattner · 17 years ago
  36. 5cf216b Merge all the 'assignment' diagnostic code into one routine, decloning by Chris Lattner · 17 years ago
  37. 2fdc374 by Steve Naroff · 17 years ago
  38. fd8b4a4 by Steve Naroff · 17 years ago
  39. 3b427b3 rename -parse-ast-print to -ast-print by Chris Lattner · 17 years ago
  40. 9f3d942 Removed option "-parse-ast-check" from clang driver. This is now implemented by Ted Kremenek · 17 years ago
  41. 410e3e2 Remove a FIXME. Replace a couple asserts with an appropriate error by Steve Naroff · 17 years ago
  42. 371227d by Steve Naroff · 17 years ago
  43. d35005e by Steve Naroff · 17 years ago
  44. 38374b0 by Steve Naroff · 17 years ago
  45. 6f9f307 More semantic analysis of initializers. by Steve Naroff · 17 years ago
  46. f009063 by Steve Naroff · 17 years ago