1. ad99dbf Rename 'HTMLDiagnostics.h' to 'PathDiagnosticClients.h' by Ted Kremenek · 16 years ago
  2. dd913e5 Turn off module verification in Release-Asserts builds. by Daniel Dunbar · 16 years ago
  3. e10b0f2 "One" line fix for -parse-noop failure, "id" and several other things by Daniel Dunbar · 16 years ago
  4. ac7ffe0 Improve llvm-gcc compatibility, -Os implies -O2 (sortof). by Daniel Dunbar · 16 years ago
  5. 8e8f3b7 Choose CompileOptions (optimization passes) to match llvm-gcc more closely. by Daniel Dunbar · 16 years ago
  6. 1b450b0 .s files don't require the preprocessor, patch by Roman Divacky! by Chris Lattner · 16 years ago
  7. 524b86f Call llvm_shutdown() on (normal) termination. This makes --time-passes usable. by Daniel Dunbar · 16 years ago
  8. 276373d With -verify, only exit early on failure. by Daniel Dunbar · 16 years ago
  9. 879c3ea Remove unneeded CheckASTConsumer function. - No functionality change. by Daniel Dunbar · 16 years ago
  10. 9a30c24 Use string literal for format string specifier; this prevents ErrMsg from being interpretted as a format string specifier. by Ted Kremenek · 16 years ago
  11. 750c358 Add initial dependency file generation support. Patch by Kovarththanan by Daniel Dunbar · 16 years ago
  12. 95c7b00 Make the analyzer store (memory model) a command line option. by Ted Kremenek · 16 years ago
  13. 7cae2f6 Added driver option "-cxx-inheritance-view" for viewing the C++ hierarchy of a class in GraphViz. by Ted Kremenek · 16 years ago
  14. 70f9243 Add -O[0-3s] support (following llvm-gcc). by Daniel Dunbar · 16 years ago
  15. a778d7d Add support for assembler-with-cpp (preprocessed .S files), patch by by Chris Lattner · 16 years ago
  16. d69bacc [LLVM up] Add basic -S option to clang. by Daniel Dunbar · 16 years ago
  17. fe6b0dc Fix <rdar://problem/6261178> clang-on-xcode: [sema] multiple method warning is over enthusiastic. by Steve Naroff · 16 years ago
  18. 8588896 Added the start of a prototype implementation of PCH based on token caching. by Ted Kremenek · 16 years ago
  19. d3db401 Add --disable-free flag to clang. by Daniel Dunbar · 16 years ago
  20. b13c5ee Add a new -rewrite-test option, which is basically a by Chris Lattner · 16 years ago
  21. c106c10 Add a new -dump-raw-tokens option, which allows us to see raw tokens. by Chris Lattner · 16 years ago
  22. 0b0ee50 Disable blocks support in C++ mode. by Daniel Dunbar · 16 years ago
  23. 68c5918 Allow -verify to be used with -rewrite-macros. by Daniel Dunbar · 16 years ago
  24. b0adbba Set exit code properly on "Unexpected program action". by Daniel Dunbar · 16 years ago
  25. e553a72 (llvm up) If the target triple is unspecified, automatically set the by Daniel Dunbar · 16 years ago
  26. 14bfdfe Drop code to validate OS part of target triple on darwin, too fragile. by Daniel Dunbar · 16 years ago
  27. 320a054 Fix help for --suppress-system-warnings by Daniel Dunbar · 16 years ago
  28. 079f2c46 Handle minor version numbers in __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ by Chris Lattner · 16 years ago
  29. ba0f25f Finish handling of -mmacosx-version-min. If you now do something like: by Chris Lattner · 16 years ago
  30. 6a30c1f start handling 'mmacosx-version-min', this is not complete yet. by Chris Lattner · 16 years ago
  31. 1318895 Add driver support for invoking block rewriter. by Steve Naroff · 16 years ago
  32. 2fe0997 Add --suppress-system-warnings (on by default, use =0 to disable) by Daniel Dunbar · 16 years ago
  33. d146552 LangOptions.C99 should be false in C++. by Argyrios Kyrtzidis · 16 years ago
  34. ea644d8 Following gcc's behavior, only enable trigraphs if '-trigraphs' or '-ansi' is by Ted Kremenek · 16 years ago
  35. f8ce699 Added Ubigraph visualization for the static analyzer (this is pretty alpha quality). by Ted Kremenek · 16 years ago
  36. 8148839 Moved HTMLDiagnostics to lib/Driver. by Zhongxing Xu · 16 years ago
  37. dcb4a1a Add TargetInfo::useNeXTRuntimeAsDefault by Daniel Dunbar · 16 years ago
  38. 0fca022 Move most of HeaderSearch initialization to libDriver. by Nico Weber · 16 years ago
  39. f77ac86 Add LangOptions::NeXTRuntime. by Daniel Dunbar · 16 years ago
  40. 6379a7a Add -fexceptions to Driver by Daniel Dunbar · 16 years ago
  41. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  42. 7bfaaae * Remove isInSystemHeader() from DiagClient, move it to SourceManager by Nico Weber · 16 years ago
  43. 7e7e625 ParseAST now never releases the passed ASTConsumer. This is the responsibility of the client. by Ted Kremenek · 16 years ago
  44. 5713433 Remove unneeded #includes. by Ted Kremenek · 16 years ago
  45. 7a08e28 Micro cleanups. by Ted Kremenek · 16 years ago
  46. 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
  47. fd54ebc add a libDriver, for now only move the text diangostics stuff from Driver to there by Nico Weber · 16 years ago
  48. 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
  49. 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
  50. c8aeb65 Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  51. f7f3c20 Provide an "Analysis Scope" for Analyses so checks can either be run on code declarations (bodies) or Objective-C @implementation blocks. by Ted Kremenek · 16 years ago
  52. fb9a48c Break off declaration of Analysis enum into Analyses.def. The driver options in by Ted Kremenek · 16 years ago
  53. 0d8019e Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 16 years ago
  54. 68bf387 add gentoo stable gcc headers path so that all tests pass here (CPATH isnt enough..) by Nuno Lopes · 16 years ago
  55. 902141f Moved logic for -dump-cfg and -view-cfg into AnalysisConsumer. by Ted Kremenek · 16 years ago
  56. 235e031 Move -dump-live-variables logic to AnalysisConsumer. by Ted Kremenek · 16 years ago
  57. bc46f34 Move logic for "-checker-simple" to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  58. b35a74a Migrated driver logic for running the CF retain/release checker over to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  59. f4381fd Added AnalysisConsumer, a meta-level ASTConsumer class to drive various by Ted Kremenek · 16 years ago
  60. e9484fc Make clang work on 32 bit powerpc linux. by Matthijs Kooijman · 16 years ago
  61. d88fb6c Patch by Anders Bergh: by Ted Kremenek · 16 years ago
  62. 14d4140 Allow -parse-noop -verify options to be used together. by Argyrios Kyrtzidis · 16 years ago
  63. c0c03bc Use a common SourceManager when processing multiple files. This allows us to cache the contents of source files already loaded from disk. by Ted Kremenek · 16 years ago
  64. c68ecb5 Fix crash when running with multiple source files. This can be improved. by Ted Kremenek · 16 years ago
  65. e7d07d1 Moved LangOptions from TranslationUnit to ASTContext. This induced a variety of cleanups in some ASTConsumers. by Ted Kremenek · 16 years ago
  66. f372111 Correctly preserve the order between -F and -I options. by Ted Kremenek · 16 years ago
  67. 358256d Use llvm::cl::desc for description of the -Wimplicit-function-declaration option. by Ted Kremenek · 16 years ago
  68. 5b4681c Implement support for -w, which silences all warnings. PR2384. by Chris Lattner · 16 years ago
  69. 1d3cce3 Update driver include paths to work on darwin10. by Ted Kremenek · 16 years ago
  70. 0951052 make #if 0 code compile, even though it still isn't very useful. by Chris Lattner · 16 years ago
  71. e8b9f5b Added -g command line options to clang for generating source level debug information. This patch currently enables generation of line number debug information (stoppoints) and region begin/end debug information. The new files CGDebugInfo.h and CGDebugInfo.cpp implements the debug info manager class CGDebugInfo. by Sanjiv Gupta · 16 years ago
  72. 56cf96b Remove the ending "." from clang options descriptions. by Sanjiv Gupta · 16 years ago
  73. b57e3d4 start implementation of a macro rewriter, this is currently just stubbed out. by Chris Lattner · 16 years ago
  74. 37d1084 Add support for -Wimplicit-function-declaration, rdar://5907433 by Chris Lattner · 16 years ago
  75. 8aedf19 Fix PR2281: these two warnings should be promoted to error on by Chris Lattner · 16 years ago
  76. e5c3012 Provide the option to run the CF-retain checker in GC enabled mode. by Ted Kremenek · 16 years ago
  77. 01d9dbf Add -fobjc-gc and -fobjc-gc-only options to the driver. by Ted Kremenek · 16 years ago
  78. c1e9dea TranslationUnit now owns IdentifierTable, TargetInfo, and Selectors objects by Ted Kremenek · 16 years ago
  79. 51574ea simplify the return of InitializePreprocessor to be bool instead of a fileid by Chris Lattner · 16 years ago
  80. aa39197 simplify ownership of the predefines buffer. by Chris Lattner · 16 years ago
  81. 339b9c2 class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 16 years ago
  82. a42cf2e Generate the Preprocessor using a local PreprocessorFactory object. by Ted Kremenek · 16 years ago
  83. a760f5f Added fixme. by Ted Kremenek · 16 years ago
  84. 47abe76 Hook up HTMLDiagnostics to use Chris's new syntax highlighting. --html-diags by Ted Kremenek · 16 years ago
  85. 3245a0a Add a mode of hackily syntax highlighting comments. This has a number of by Chris Lattner · 16 years ago
  86. 8ac661c Add -o support for -emit-html, make it not produce a file on an error. by Chris Lattner · 16 years ago
  87. fdbe679 Remove "--html-test" driver option and its corresponding code; all of this by Ted Kremenek · 16 years ago
  88. b29b427 Rename RewriteTest->RewriteObjC. by Steve Naroff · 16 years ago
  89. 55af98c Added driver option "-checker-opt-analyze-headers" to force the static by Ted Kremenek · 16 years ago
  90. 1102d6b Handle -D and -U options in order, so that they can cancel each other out when by Sam Bishop · 16 years ago
  91. d71ed26 Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 16 years ago
  92. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  93. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 16 years ago
  94. 4dc41cc Inlined clang/Analysis/Analyses/GRSimpleVals.h into LocalCheckers.h and removed by Ted Kremenek · 16 years ago
  95. 88f5cde Added "HTMLDiagnostic", a generic DiagnosticClient (that also implements PathDiagnostic) by Ted Kremenek · 16 years ago
  96. f24964c debian amd64 testing by Andrew Lenharth · 16 years ago
  97. 92d56b7 debian ia32 testing by Andrew Lenharth · 16 years ago
  98. c68ab77 Teach the rewriter how to respect the -o option. by Chris Lattner · 16 years ago
  99. 13e479b Initial experimentation with adding boxed "annotations" to HTMLized source. by Ted Kremenek · 16 years ago
  100. 6a34083 Added the beginning of a set of rewriter functions for pretty-printing source by Ted Kremenek · 16 years ago