1. 0e4f40e Attributes on block functions were not being set. by Daniel Dunbar · 15 years ago
  2. 67d8249 PCH support for do-while and for loops by Douglas Gregor · 15 years ago
  3. d921cf9 PCH support for while and continue statements by Douglas Gregor · 15 years ago
  4. 397195b Fixup semantic analysis for nested blocks, and allow block literal by Mike Stump · 15 years ago
  5. b14095a Implement basic code generation of constructor calls. We can now compile: by Anders Carlsson · 15 years ago
  6. 025452f PCH support for the first batch of statements, including null, by Douglas Gregor · 15 years ago
  7. 363c184 Add GetAddrOfCXXConstructor and use it. by Anders Carlsson · 15 years ago
  8. d87a501 Add constructor getter to CXXTemporaryObjectExpr. by Anders Carlsson · 15 years ago
  9. 930e8d0 If a class has a non-trivial constructor that doesn't take any arguments, we will now make an implicit CXXTemporaryObjectExpr. So by Anders Carlsson · 15 years ago
  10. b00ac07 -Wall is -Wmost -Wparentheses by Chris Lattner · 15 years ago
  11. fec26bd Driver: Allow using clang as a precompiler, even if it is an unsupported arch. by Daniel Dunbar · 15 years ago
  12. cb70bb2 Clean up the declaration-decoding step in the PCH reader, using the by Douglas Gregor · 15 years ago
  13. c9490c0 Prepare PCH reader and writer for (de-)serialization of statements. No by Douglas Gregor · 15 years ago
  14. fdb5e1c Removed a no longer needed FIXME comment. by Fariborz Jahanian · 15 years ago
  15. 3aaa482 Fix <rdar://problem/6765383> clang-6: clang does not appear to support declaring a static Block 'const'. by Steve Naroff · 15 years ago
  16. 1e9aef3 Category method synbols must be qualified by gategory name to match gcc's. by Fariborz Jahanian · 15 years ago
  17. 3201f6b Fix a crash bug when comparing overload quality of conversion operators with conversion constructors. by Sebastian Redl · 15 years ago
  18. ba79fc2 Attempt to fix a read-after-free running test/Sema/designated-initializers.c. by Eli Friedman · 15 years ago
  19. 0a6bcc4 Force target triple for test depending on __weak. by Eli Friedman · 15 years ago
  20. 098a3df When we create an implicit CXXTemporaryObjectExpr we don't need to check that it's a valid init. Instead, just set it as the VarDecl's initializer. by Anders Carlsson · 15 years ago
  21. 6463ef4 Ensure that the most recent declaration of a tentative definition wins by Daniel Dunbar · 15 years ago
  22. 9e820ee Pass -fdiagnostics-show-option to clang-cc by default. by Daniel Dunbar · 15 years ago
  23. 56dc97a other half of 69274 by Chris Lattner · 15 years ago
  24. 11bddef split diagnostic group definitions out into their own file. by Chris Lattner · 15 years ago
  25. 87d854e optimize and comment GetDiagInfo. by Chris Lattner · 15 years ago
  26. 121f60c merge several scattered tables into StaticDiagInfo. by Chris Lattner · 15 years ago
  27. 33dd282 Implement Diagnostic::getWarningOptionForDiag with information from tblgen, by Chris Lattner · 15 years ago
  28. 19cbb44 tblgen is now passing diagnostic group information in the .inc file, ignore it everywhere. by Chris Lattner · 15 years ago
  29. d51d74a implement framework for -fdiagnostics-show-option, but tblgen isn't by Chris Lattner · 15 years ago
  30. 3cbc3cf Disable the code I added before until I understand what's causing default2.cpp to fail. by Anders Carlsson · 15 years ago
  31. b54b276 move handling of -pedantic and -pedantic-errors into Diagnostics, by Chris Lattner · 15 years ago
  32. 2b07d8f arrange for -Wno-error=foo warnings to be immune to -Werror as by Chris Lattner · 15 years ago
  33. 691f1ae change mappings to distinguish between "unset", "set by the user" and by Chris Lattner · 15 years ago
  34. e5ca82f Driver: Remove the majority of -W* options, the driver doesn't by Daniel Dunbar · 15 years ago
  35. 6a7334d use getDiagnosticLevel instead of getDiagnosticMapping, which by Chris Lattner · 15 years ago
  36. 06ef3c3 Driver: Forward -W* to clang, it can handle all these itself now. by Daniel Dunbar · 15 years ago
  37. e29cc89 switch DiagMappings *back* to 4 bits per diag. by Chris Lattner · 15 years ago
  38. 6ac9ffc implement -Wno-#warnings etc. by Chris Lattner · 15 years ago
  39. 63f5c26 Eliminate pch::TYPE_ATTR, which is never used by Douglas Gregor · 15 years ago
  40. ba6d7e7 PCH support for CompoundLiteralExpr. This is the last C expression by Douglas Gregor · 15 years ago
  41. d077d75 PCH support for InitListExpr, DesignatedInitExpr, and ImplicitValueInitExpr. by Douglas Gregor · 15 years ago
  42. 8ac3af9 when tblgen fills in all the subgroup info, clang is ready for it. by Chris Lattner · 15 years ago
  43. bc583a0 add scafolding to represent heirarchical warnings, start with -Wall. by Chris Lattner · 15 years ago
  44. 347ba89 Add support for the __has_trivial_constructor type trait. by Anders Carlsson · 15 years ago
  45. 94cd5d1 PCH support for ShuffleVectorExpr and BlockDeclRefExpr by Douglas Gregor · 15 years ago
  46. 44cae0c PCH support for TypesCompatibleExpr, ChooseExpr, and GNUNullExpr. by Douglas Gregor · 15 years ago
  47. d3c98a0 PCH support for ExtVectorElementExpr and VAArgExpr. by Douglas Gregor · 15 years ago
  48. 9a7e556 make unknown warnings a warning, not an error. by Chris Lattner · 15 years ago
  49. 5b43098 add anonymous groups for all the warning command line flags that the clang by Chris Lattner · 15 years ago
  50. ad90e96 PCH support for CompoundAssignOperator and ConditionalOperator by Douglas Gregor · 15 years ago
  51. c83b60d add support for -Wextra and -W by Chris Lattner · 15 years ago
  52. 7171825 comment out IsGroup: tblgen isn't instantiating these dependent defs quite right yet. by Chris Lattner · 15 years ago
  53. cb2ca73 PCH support for ImaginaryLiteral and ArraySubscriptExpr by Douglas Gregor · 15 years ago
  54. c2f4c34 Fixup codegen for copy/dispose for block literals. Radar 6791245 by Mike Stump · 15 years ago
  55. 03f5ad9 Defer generation of tentative definitions. - PR3980. by Daniel Dunbar · 15 years ago
  56. 6d47396 PCH support for ExtQualType by Douglas Gregor · 15 years ago
  57. c8d2e77 Fix decl type merges when they have __string/__weak attributes. by Fariborz Jahanian · 15 years ago
  58. 963dfbd Set DebugInfo at the beginning of GenerateBlockFunction(). by Devang Patel · 15 years ago
  59. ca29ad9 When declaring a variable that has a constructor and a direct initializer, for example: by Anders Carlsson · 15 years ago
  60. dbb4f21 Add warning when a tentative array definition is assumed to have one element. by Daniel Dunbar · 15 years ago
  61. 68a2eb0 PCH support for declaration attributes by Douglas Gregor · 15 years ago
  62. 59d8e0f Actually generate code for the simple constructors we know we can generate code for. by Anders Carlsson · 15 years ago
  63. d7492c4 use tablgen-generated warning groups. by Chris Lattner · 15 years ago
  64. 8469c31 generate diagnostic group tables, this requires llvm r69219 or later. by Chris Lattner · 15 years ago
  65. cb75e3c fix a name shadowing problem in tblgen. by Chris Lattner · 15 years ago
  66. e6cea2c use slightly more verbose to work around a tblgen bug for now. by Chris Lattner · 15 years ago
  67. 8ee50ea move clang specific makefile goop to clang instead of llvm. This may require by Chris Lattner · 15 years ago
  68. 7595fb1 Don't use \01 in symbol name if unnecessary. by Daniel Dunbar · 15 years ago
  69. cd9c514 Fix <rdar://problem/6786597> varargs not supported for Blocks under clang. by Steve Naroff · 15 years ago
  70. 50c314c Patch to remove a bogus warning which pointed to underlying AST by Fariborz Jahanian · 15 years ago
  71. f59c1a6 Fix alignment on obj_msgrefs to match llvm-gcc. by Daniel Dunbar · 15 years ago
  72. 33af70f Add test case for superrefs section (and make spacing consistent). by Daniel Dunbar · 15 years ago
  73. fe526d2 fix some out of bounds array access problems, which manifest particularly by Chris Lattner · 15 years ago
  74. 6a2bfb2 PCH support for the string literal of a FileScopeAsmDecl. Some minor cleanup. by Douglas Gregor · 15 years ago
  75. 16e48ff move some pp diags to the right .td file. by Chris Lattner · 15 years ago
  76. 4945717 annotate diagnostics with which groups they belong to. Each by Chris Lattner · 15 years ago
  77. f60e991 For source location entries that describe instantiations, encode the by Douglas Gregor · 15 years ago
  78. 1f0d013 PCH support for MemberExpr and CallExpr. by Douglas Gregor · 15 years ago
  79. 3bf4497 Fixup http://llvm.org/viewvc/llvm-project?rev=69165&view=rev (based on feedback from Eli). by Steve Naroff · 15 years ago
  80. af00883 now that we've decoupled diagnostic classes from default mappings, by Chris Lattner · 15 years ago
  81. d2aa7c9 move {'s by Chris Lattner · 15 years ago
  82. 1b6823d Revert previous patch (will commit a fix soon). by Steve Naroff · 15 years ago
  83. 8a941e0 Make diagnostic class explicit in the diag record instead of by Chris Lattner · 15 years ago
  84. 4ac072a Tblgen now passes the default mapping explicitly, instead of having it by Chris Lattner · 15 years ago
  85. 41c6c46 add a bunch of files. by Chris Lattner · 15 years ago
  86. 673ecd6 PCH support for string literals by Douglas Gregor · 15 years ago
  87. c35d71f Driver: Add --help-hidden by Daniel Dunbar · 15 years ago
  88. 93ae2c7 __objc_superrefs belongs to __DATA segment. by Fariborz Jahanian · 15 years ago
  89. 0b0b77f PCH support for UnaryOperator, SizeOfAlignOfExpr by Douglas Gregor · 15 years ago
  90. 95d4e5d Start attempting to generate code for C++ ctors. by Anders Carlsson · 15 years ago
  91. ee3899e Fix <rdar://problem/6789707> "warning: 'extern' variable has an initializer" not correct for __private_extern__. by Steve Naroff · 15 years ago
  92. 9dbbdbf rename variable in comment, not just in code :). by Chris Lattner · 15 years ago
  93. b25ddfb Fix <rdar://problem/6791490> [clang10 regression] [sema] invalid illegal jump diagnostic. by Steve Naroff · 15 years ago
  94. 9faf50e this should be private by Chris Lattner · 15 years ago
  95. 3fbbfcf add another sanity check for -Werror=xx by Chris Lattner · 15 years ago
  96. 17e681f add a missing && by Chris Lattner · 15 years ago
  97. 92af210 fix a broken test, that passed for the wrong reason. Two wrongs make a right! :) by Chris Lattner · 15 years ago
  98. 27ceb9d Rejigger how -pedantic and -pedantic-errors work and their interaction by Chris Lattner · 15 years ago
  99. ffb4b6e Implement support for designated initializers that refer to members of by Douglas Gregor · 15 years ago
  100. 3ac86b5 Add support for mangling C++ constructors. Review appreciated (I'm looking at you, Doug) by Anders Carlsson · 15 years ago