1. eeae8f0 Make our diagnostics about the obsolete GNU designated-initializer by Douglas Gregor · 16 years ago
  2. 0845773 Fix a thinko in the pre-allocation strategy for structured initializer by Douglas Gregor · 16 years ago
  3. fa21920 When building the structured initializer list, pre-allocate storage in by Douglas Gregor · 16 years ago
  4. a645796 Allow flexible array initializers that are not surrounded by by Douglas Gregor · 16 years ago
  5. 7c80bd6 Almost complete implementation of rvalue references. One bug, and a few unclear areas. Maybe Doug can shed some light on some of the fixmes. by Sebastian Redl · 16 years ago
  6. ed8a93d Fix PR3509 by providing correct starting locations for initializer lists by Douglas Gregor · 16 years ago
  7. c1efaec Eliminate CXXRecordType by Douglas Gregor · 16 years ago
  8. 220b636 fix a bozobug. by Chris Lattner · 16 years ago
  9. 19753cf ok, not as broken as I thought, just confusing. This allows by Chris Lattner · 16 years ago
  10. 8879e3b allow wide strings to initialize arrays compatible with wchar_t. by Chris Lattner · 16 years ago
  11. 79e079d handle @encode interactions with array initializers. by Chris Lattner · 16 years ago
  12. 19da8cd rename CheckStringLiteralInit to CheckStringInit and pass in the by Chris Lattner · 16 years ago
  13. 0820254 make SemaRef be a reference to sema, not a pointer. by Chris Lattner · 16 years ago
  14. 8b419b9 move InitListChecker to be private to SemaInit.cpp by Chris Lattner · 16 years ago
  15. 95e8d65 Make CheckSingleInitializer a static function in SemaInit.cpp by Chris Lattner · 16 years ago
  16. f71ae8d make CheckStringLiteralInit a static function in SemaInit.cpp by Chris Lattner · 16 years ago
  17. 6c291a8 change IsStringLiteralInit into a static function in SemaInit.cpp by Chris Lattner · 16 years ago
  18. dd8e006 move some initialization checking code from SemaDecl.cpp by Chris Lattner · 16 years ago
  19. 7c53ca6 Downgrade the "excess elements in initializer" errors to warnings *in by Douglas Gregor · 16 years ago
  20. dfb5e59 Fix a bug with designated initializers where we were stepping out of a by Douglas Gregor · 16 years ago
  21. fdf5569 When handling "the rest" of a designated array subobject, maybe sure by Douglas Gregor · 16 years ago
  22. eeb15d4 Implement semantic analysis for the GNU flexible array initialization by Douglas Gregor · 16 years ago
  23. d863517 Add iterators to LookupResult, allowing one to iterate over the by Douglas Gregor · 16 years ago
  24. 87fd703 Check value-initializations that occur when an initializer list by Douglas Gregor · 16 years ago
  25. b574e56 Upgrade the "excess elements in array initializer" warning to an by Douglas Gregor · 16 years ago
  26. 930d8b5 Implement and test aggregate initialization in C++. Major changes: by Douglas Gregor · 16 years ago
  27. d7eb846 Switch Type::isAggregateType to use the C++ definition of "aggregate by Douglas Gregor · 16 years ago
  28. a9c8780 Make CodeGen produce an error if we come across a non-constant initializer list that involves the GNU array-range designator extension by Douglas Gregor · 16 years ago
  29. 3498bdb Introduce a new expression node, ImplicitValueInitExpr, that by Douglas Gregor · 16 years ago
  30. 0bb7689 Clean up designated initialization of unions, so that CodeGen doesn't by Douglas Gregor · 16 years ago
  31. 500d329 move library-specific diagnostic headers into library private dirs. Reduce by Chris Lattner · 16 years ago
  32. 68355a5 fix an absolutely inscrutible gcc 4.0 error: by Chris Lattner · 16 years ago
  33. 9e80f72 Better documentation for our initialization checker by Douglas Gregor · 16 years ago
  34. c34ee5e Move InitListChecker out of Sema.h by Douglas Gregor · 16 years ago
  35. 6fbdc6b Eliminate infinite looping in a wacky case with designated initializers. Simplifies (somewhat) the actually checking of the initializer expression following the designators by Douglas Gregor · 16 years ago
  36. 54f0728 Remove Expr::hasSideEffects. It doesn't work anyway by Douglas Gregor · 16 years ago
  37. 34e7946 Improvements to code-generation and semantic analysis of designated by Douglas Gregor · 16 years ago
  38. 4c67834 Code generation support for C99 designated initializers. by Douglas Gregor · 16 years ago
  39. 20c6b3b Split the single monolithic DiagnosticKinds.def file into one by Chris Lattner · 16 years ago
  40. d6f584f More APSInt appeasement by Douglas Gregor · 16 years ago
  41. 53d3d8e Hopefully the last of the APSInt signedness issues with initializers. Fixes PR clang/3378 by Douglas Gregor · 16 years ago
  42. e3fa2de Make sure all of the isUnsigned flags line up when comparing initializer values, to really really fix PR clang/3377 by Douglas Gregor · 16 years ago
  43. f6c717c Properly manage the bit-widths of APInts/APSInts in array initialization. by Douglas Gregor · 16 years ago
  44. 87f55cf Reimplement the handling of the "current object" in designator by Douglas Gregor · 16 years ago
  45. 05c13a3 Initial implementation of semantic analysis and ASTs for C99 by Douglas Gregor · 16 years ago
  46. 09f41cf Introduce support for C++0x explicit conversion operators (N2437) by Douglas Gregor · 16 years ago
  47. b3eef68 Revert my previous, failed attempt to pretty-print anonymous struct/union accesses well. Added a FIXME so we know to revisit this later by Douglas Gregor · 16 years ago
  48. 83233a4 Fix printing of member references to avoid displaying implicitly-generated member references, e.g., for anonymous struct/unions or implicit 'this' in member functions by Douglas Gregor · 16 years ago
  49. e267ff3 Address some comments on the name lookup/DeclContext patch from Chris by Douglas Gregor · 16 years ago
  50. 44b4321 Unifies the name-lookup mechanisms used in various parts of the AST by Douglas Gregor · 16 years ago
  51. d162584 Change a whole lot of diagnostics to take QualType's directly by Chris Lattner · 16 years ago
  52. f3a41af remove the last old-fashioned Diag method. Transition complete! by Chris Lattner · 16 years ago
  53. dcd5ef1 remove one more old-style Diag method. by Chris Lattner · 16 years ago
  54. 418f6c7 Remember whether an initlist had a designator in the AST. by Chris Lattner · 16 years ago
  55. 396f0bf Support initialization of incomplete array with zero size (as extension). by Daniel Dunbar · 16 years ago
  56. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  57. 12bc692 Minor #include cleaning by Daniel Dunbar · 16 years ago
  58. 6135352 InitListChecker::CheckListElementTypes(): Check for function types and issue an appropriate diagnostic. by Steve Naroff · 16 years ago
  59. 1bb516c Make sure to count the struct elements correctly; here, we want the by Eli Friedman · 16 years ago
  60. c63a1f2 by Chris Lattner · 16 years ago
  61. 39ba4ae -Changes to TagDecl: by Argyrios Kyrtzidis · 16 years ago
  62. c92e5e4 For struct initialization, check compatibility with the unqualified by Eli Friedman · 16 years ago
  63. f84eda3 Count the number of initializable members correctly in structs/unions by Eli Friedman · 16 years ago
  64. 402256f Diagnose implicit init list for empty aggregate, like struct {}. Fixes by Eli Friedman · 16 years ago
  65. 638e144 Move the error checking for variable-sized objects so we don't by Eli Friedman · 16 years ago
  66. d8dc210 Be a bit more defensive in SemaInit. by Eli Friedman · 16 years ago
  67. cda25a9 Adjust warning so that it doesn't fire when there is an error. by Eli Friedman · 16 years ago
  68. bb504d3 Add errors for some illegal constructs (specifically, "int a = {{3}};" by Eli Friedman · 16 years ago
  69. c9c0ea6 Some more SemaInit cleanup. by Eli Friedman · 16 years ago
  70. b85f707 Various fixes; solves (almost) all of the test regressions that would be by Eli Friedman · 16 years ago
  71. a647caa Several fixes to SemaInit.cpp. It's still not enabled (since it fails a few tests). Expect to enable it very soon. by Steve Naroff · 16 years ago
  72. 0cca749 Replace Sema::CheckInitializerListTypes() with a helper class (InitListChecker) that synthesizes implicit InitListExpr's when appropriate (see InitListExpr comments in Expr.h for more details). I also moved the code to SemaInit.cpp, to help reduce clutter in SemaDecl.cpp. by Steve Naroff · 16 years ago