1. 48a8c61 Rework SynthesizeBlockImpl() to include a constructor. by Steve Naroff · 16 years ago
  2. 1bfe1c2 Pass postfix attributes to ActOnFields. by Daniel Dunbar · 16 years ago
  3. 3ad29e2 Get the right location to insert the synthesized block literals/functions. by Steve Naroff · 16 years ago
  4. a0b75cf Name changes and some cleanup of preamble. by Steve Naroff · 16 years ago
  5. 8af6a45 Changed Sema::CheckForConstantInitializer to allow global block literals. by Steve Naroff · 16 years ago
  6. e553a72 (llvm up) If the target triple is unspecified, automatically set the by Daniel Dunbar · 16 years ago
  7. 14bfdfe Drop code to validate OS part of target triple on darwin, too fragile. by Daniel Dunbar · 16 years ago
  8. 320a054 Fix help for --suppress-system-warnings by Daniel Dunbar · 16 years ago
  9. 079f2c46 Handle minor version numbers in __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ by Chris Lattner · 16 years ago
  10. ba0f25f Finish handling of -mmacosx-version-min. If you now do something like: by Chris Lattner · 16 years ago
  11. 6a30c1f start handling 'mmacosx-version-min', this is not complete yet. by Chris Lattner · 16 years ago
  12. 0b9e736 clean up a bunch of fixme's I added, by moving by Chris Lattner · 16 years ago
  13. 1b9ad14 fit in 80 cols. by Chris Lattner · 16 years ago
  14. fd96684 Make clang preprocessed output a bit more like gcc output. by Daniel Dunbar · 16 years ago
  15. cc2ece2 Fix a couple harmless warnings when compiling optimized with gcc (reported by mrs@apple.com). by Steve Naroff · 16 years ago
  16. 1f6c3ae Fix some const-ness to keep the VisualStudio C++ compiler happy. by Steve Naroff · 16 years ago
  17. ca3bb4f RewriteBlocks::RewriteBlockPointerDecl(): Handle TypedefDecl's and VarDecl's uniformly. by Steve Naroff · 16 years ago
  18. eab5f63 Teach block rewriter to replace '^' with '*' in VarDecls. by Steve Naroff · 16 years ago
  19. cfdf9b4 Change implementation of NSError** coding-style check to be invoked at the end of the retain/release analysis. by Ted Kremenek · 16 years ago
  20. 1318895 Add driver support for invoking block rewriter. by Steve Naroff · 16 years ago
  21. f45d18c Implemented one of the checks requested in PR 2600: by Ted Kremenek · 16 years ago
  22. 9c3c902 Remove BlockStmtExpr. by Steve Naroff · 16 years ago
  23. 1c9f81b Add support for rewriting blocks... by Steve Naroff · 16 years ago
  24. a95d375 Patch by Csaba Hruska! by Ted Kremenek · 16 years ago
  25. 2fe0997 Add --suppress-system-warnings (on by default, use =0 to disable) by Daniel Dunbar · 16 years ago
  26. 378f47a Fix <rdar://problem/6210791> clang ObjC rewriter: @try / @catch block with no @finally does not call objc_exception_try_exit. by Steve Naroff · 16 years ago
  27. d146552 LangOptions.C99 should be false in C++. by Argyrios Kyrtzidis · 16 years ago
  28. 233f74b Add support for expected-note to Clang's -verify option by Douglas Gregor · 16 years ago
  29. 8bd3dc6 Fix <rdar://problem/6197841> try, finally with no catch stops the exception from being propagated by Steve Naroff · 16 years ago
  30. e275e92 rename libclangSEMA to libclangSema by Nico Weber · 16 years ago
  31. 4b7c983 Change struct forward declarations and definitions to use unique RecordDecls, as opposed to creating a single RecordDecl and reusing it. by Ted Kremenek · 16 years ago
  32. 737bdb4 Workaround gcc bug causing crash on our preprocessed outputs. by Daniel Dunbar · 16 years ago
  33. df042e6 Remove "NextDecl" from RecordDecl. This change touches many files that where RecordDecl or CXXRecordDecl was constructed, always with an argument of 'NULL' for the previous declaration. by Ted Kremenek · 16 years ago
  34. 628a42e Output "ANALYZE:" diagnostics to STDOUT instead of STDERR. by Ted Kremenek · 16 years ago
  35. ea644d8 Following gcc's behavior, only enable trigraphs if '-trigraphs' or '-ansi' is by Ted Kremenek · 16 years ago
  36. 932680e Add newline to end of file. by Daniel Dunbar · 16 years ago
  37. 45479c8 Always print out the function we're analyzing. by Ted Kremenek · 16 years ago
  38. 56b9871 Ubigraph visualization: represent cached nodes with a different style. by Ted Kremenek · 16 years ago
  39. 710ad93 Automatically execute ubiviz. by Ted Kremenek · 16 years ago
  40. d128932 Ubigraph-rendered ExplodedGraphs now have arrows and are oriented downward. by Ted Kremenek · 16 years ago
  41. f8ce699 Added Ubigraph visualization for the static analyzer (this is pretty alpha quality). by Ted Kremenek · 16 years ago
  42. 9f0afd4 Rename ObjCPropertyImplDecl::PropertyImplKind (consistency) by Daniel Dunbar · 16 years ago
  43. 8148839 Moved HTMLDiagnostics to lib/Driver. by Zhongxing Xu · 16 years ago
  44. 405674c adjust to changes in various APIs from LLVM. We can't print by Chris Lattner · 16 years ago
  45. dcb4a1a Add TargetInfo::useNeXTRuntimeAsDefault by Daniel Dunbar · 16 years ago
  46. 0fca022 Move most of HeaderSearch initialization to libDriver. by Nico Weber · 16 years ago
  47. efe8a96 improve pretty printing of objc method declaration, by Chris Lattner · 16 years ago
  48. 3498cc9 RewriteObjC::RewriteObjCSynchronizedStmt(): Make sure the sync expr is cast to "id". by Steve Naroff · 16 years ago
  49. c7089f1 Fix crasher in RewriteObjC::RewriteObjCSynchronizedStmt(). Can't depend on the source locations of the sync expression (since it may have been rewritten. by Steve Naroff · 16 years ago
  50. e9d89d8 Use raw_ostream to output an unsigned. by Chris Lattner · 16 years ago
  51. 0835a3c Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastExpr and ExplicitCastExpr derive from a common base class (CastExpr): by Argyrios Kyrtzidis · 16 years ago
  52. 653201b printing with an unspecified dest means to print to stdout. by Chris Lattner · 16 years ago
  53. 76b3a72 don't delete a variable on the stack by Chris Lattner · 16 years ago
  54. 202e9ac simplify this code a bit more. by Chris Lattner · 16 years ago
  55. e96de3e remove global variables for output stream. by Chris Lattner · 16 years ago
  56. dceb6a7 by Chris Lattner · 16 years ago
  57. a9bc2d9 Fix typo. by Ted Kremenek · 16 years ago
  58. f77ac86 Add LangOptions::NeXTRuntime. by Daniel Dunbar · 16 years ago
  59. 6379a7a Add -fexceptions to Driver by Daniel Dunbar · 16 years ago
  60. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  61. 7bfaaae * Remove isInSystemHeader() from DiagClient, move it to SourceManager by Nico Weber · 16 years ago
  62. be1eb5c Do not crash with -serialize. by Nico Weber · 16 years ago
  63. d9f6910 rename PreDefinedExpr -> PredefinedExpr by Chris Lattner · 16 years ago
  64. dae8696 do not serialize invalid asts. this fixes bug #2637 by Nico Weber · 16 years ago
  65. e452e0f Unbreak SerializationTest and the Rewriter by doing the work in HandleTranslationUnit instead of the destructor. by Ted Kremenek · 16 years ago
  66. 7e7e625 ParseAST now never releases the passed ASTConsumer. This is the responsibility of the client. by Ted Kremenek · 16 years ago
  67. 5713433 Remove unneeded #includes. by Ted Kremenek · 16 years ago
  68. 7a08e28 Micro cleanups. by Ted Kremenek · 16 years ago
  69. b4398aa Fix --html-diags in driver by delaying the construction of an HTMLDiagnosticClient until after we have created the Preprocessor object. by Ted Kremenek · 16 years ago
  70. 992a878 Let LLVMCodeGenWriter forward all the methods defined in ASTConsumer, to by Matthijs Kooijman · 16 years ago
  71. aba49d1 Fix for <rdar://problem/6113807> clang ObjC rewriter: crash rewriting attached file by Steve Naroff · 16 years ago
  72. fd54ebc add a libDriver, for now only move the text diangostics stuff from Driver to there by Nico Weber · 16 years ago
  73. 88bee74 Finish fixing <rdar://problem/5929344> clang ObjC rewriter: "extern int __CFConstantStringClassReference[];" should be extern "C" by Steve Naroff · 16 years ago
  74. db82568 fix crash when printing diagnostics with tokens that span through more than one line by Nuno Lopes · 16 years ago
  75. 815c78f Refactored driver logic for CodeGen into LLVMCodeGenWriter. This ASTConsumer layers on top of LLVMCodeGen (another existing ASTConsumer) to emit bitcode files to disk. This layering takes this logic out of clang.cpp and puts it directly into the ASTConsumer interface. The benefit is that now --emit-llvm works with both serialized ASTs and regular source files. by Ted Kremenek · 16 years ago
  76. a11440b Fix <rdar://problem/6108119> clang ObjC rewriter: if no newline at end of input file, rewriter inserts #define on same line as closing brace by Steve Naroff · 16 years ago
  77. 914701e Move AsmLabel into Declarator instead of just a parameter to ActOnDeclarator. by Daniel Dunbar · 16 years ago
  78. a80f874 Add more Parser/Sema support for GCC asm-label extension. by Daniel Dunbar · 16 years ago
  79. 4f4e7e4 Fix regression when invoking the MissingDealloc analysis: disable this check when in -fobjc-gc-only mode. by Ted Kremenek · 16 years ago
  80. bb8f4e6 Add more output to clang -parse-print-callbacks by Daniel Dunbar · 16 years ago
  81. ae8a255 Fix regression in range highlighting in HTML output. by Ted Kremenek · 16 years ago
  82. 4f95b75 Fix incomplete implementation for rewriting protocol refs. by Steve Naroff · 16 years ago
  83. 8b51fd7 remove some unneeded calls to getCanonicalType by Chris Lattner · 16 years ago
  84. a59e050 comment out #pragma mark and #warning directives. by Chris Lattner · 16 years ago
  85. 0d76fcd rewrite handling of the raw token stream in -rewrite-macros to lex by Chris Lattner · 16 years ago
  86. 4ba0acb Fix RewriteObjC::RewriteObjCThrowStmt() to respect whitespace between the @ and throw. by Steve Naroff · 16 years ago
  87. fc93d52 Fix Sema::ActOnClassMessage() to pass through the identifier for "super". by Steve Naroff · 16 years ago
  88. 1683360 "This patch adds paths for Fedora 9 in clang.cpp and support for two preprocessor options in ccc." by Ted Kremenek · 16 years ago
  89. fd8fc4e Modified HTMLDiagnostics to also perform syntax highlighting for errors in header files. by Ted Kremenek · 16 years ago
  90. 395aaf2 Add prototype implementation of unused ivar check. by Ted Kremenek · 16 years ago
  91. 78d4624 Moved registration of basic path-sensitive checks from GRSimpleVals.cpp to GRExprEngineInternalChecks.cpp. by Ted Kremenek · 16 years ago
  92. 9d0aaa1 unindent this function by using an early exit, not functionality change. by Chris Lattner · 16 years ago
  93. 780f329 move two more lists of protocols over to use ObjCList<ObjCProtocolDecl>, by Chris Lattner · 16 years ago
  94. 600e4e8 RewriteObjC::RewriteObjCForCollectionStmt() needs to handle bodies with a single statement. by Steve Naroff · 16 years ago
  95. 3db6cae introduce a new ObjCList templated class and start moving by Chris Lattner · 16 years ago
  96. c8aeb65 Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  97. f616ebb RewriteObjC::SynthMessageExpr(): Fix super rewrite (a fairly recent regression). by Steve Naroff · 16 years ago
  98. b2a3945 Remove a FIXME from RewriteObjC::RewriteObjCSynchronizedStmt(). by Steve Naroff · 16 years ago
  99. 59f05a4 RewriteObjC::Initialize(): add function decls used by @synchronized. by Steve Naroff · 16 years ago
  100. 8f3b265 Two fixes: by Steve Naroff · 16 years ago