1. d69bacc [LLVM up] Add basic -S option to clang. by Daniel Dunbar · 16 years ago
  2. fe6b0dc Fix <rdar://problem/6261178> clang-on-xcode: [sema] multiple method warning is over enthusiastic. by Steve Naroff · 16 years ago
  3. 8588896 Added the start of a prototype implementation of PCH based on token caching. by Ted Kremenek · 16 years ago
  4. d3db401 Add --disable-free flag to clang. by Daniel Dunbar · 16 years ago
  5. b13c5ee Add a new -rewrite-test option, which is basically a by Chris Lattner · 16 years ago
  6. c106c10 Add a new -dump-raw-tokens option, which allows us to see raw tokens. by Chris Lattner · 16 years ago
  7. 0b0ee50 Disable blocks support in C++ mode. by Daniel Dunbar · 16 years ago
  8. 68c5918 Allow -verify to be used with -rewrite-macros. by Daniel Dunbar · 16 years ago
  9. b0adbba Set exit code properly on "Unexpected program action". by Daniel Dunbar · 16 years ago
  10. e553a72 (llvm up) If the target triple is unspecified, automatically set the by Daniel Dunbar · 16 years ago
  11. 14bfdfe Drop code to validate OS part of target triple on darwin, too fragile. by Daniel Dunbar · 16 years ago
  12. 320a054 Fix help for --suppress-system-warnings by Daniel Dunbar · 16 years ago
  13. 079f2c46 Handle minor version numbers in __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ by Chris Lattner · 16 years ago
  14. ba0f25f Finish handling of -mmacosx-version-min. If you now do something like: by Chris Lattner · 16 years ago
  15. 6a30c1f start handling 'mmacosx-version-min', this is not complete yet. by Chris Lattner · 16 years ago
  16. 1318895 Add driver support for invoking block rewriter. by Steve Naroff · 16 years ago
  17. 2fe0997 Add --suppress-system-warnings (on by default, use =0 to disable) by Daniel Dunbar · 16 years ago
  18. d146552 LangOptions.C99 should be false in C++. by Argyrios Kyrtzidis · 16 years ago
  19. ea644d8 Following gcc's behavior, only enable trigraphs if '-trigraphs' or '-ansi' is by Ted Kremenek · 16 years ago
  20. f8ce699 Added Ubigraph visualization for the static analyzer (this is pretty alpha quality). by Ted Kremenek · 16 years ago
  21. 8148839 Moved HTMLDiagnostics to lib/Driver. by Zhongxing Xu · 16 years ago
  22. dcb4a1a Add TargetInfo::useNeXTRuntimeAsDefault by Daniel Dunbar · 16 years ago
  23. 0fca022 Move most of HeaderSearch initialization to libDriver. by Nico Weber · 16 years ago
  24. f77ac86 Add LangOptions::NeXTRuntime. by Daniel Dunbar · 16 years ago
  25. 6379a7a Add -fexceptions to Driver by Daniel Dunbar · 16 years ago
  26. e91593e More #include cleaning by Daniel Dunbar · 16 years ago
  27. 7bfaaae * Remove isInSystemHeader() from DiagClient, move it to SourceManager by Nico Weber · 16 years ago
  28. 7e7e625 ParseAST now never releases the passed ASTConsumer. This is the responsibility of the client. by Ted Kremenek · 16 years ago
  29. 5713433 Remove unneeded #includes. by Ted Kremenek · 16 years ago
  30. 7a08e28 Micro cleanups. by Ted Kremenek · 16 years ago
  31. 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
  32. fd54ebc add a libDriver, for now only move the text diangostics stuff from Driver to there by Nico Weber · 16 years ago
  33. 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
  34. 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
  35. c8aeb65 Prevent clang from emitting output when input has errors by Daniel Dunbar · 16 years ago
  36. 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
  37. fb9a48c Break off declaration of Analysis enum into Analyses.def. The driver options in by Ted Kremenek · 16 years ago
  38. 0d8019e Add new check: -check-objc-methodsigs. This check scans methods in by Ted Kremenek · 16 years ago
  39. 68bf387 add gentoo stable gcc headers path so that all tests pass here (CPATH isnt enough..) by Nuno Lopes · 16 years ago
  40. 902141f Moved logic for -dump-cfg and -view-cfg into AnalysisConsumer. by Ted Kremenek · 16 years ago
  41. 235e031 Move -dump-live-variables logic to AnalysisConsumer. by Ted Kremenek · 16 years ago
  42. bc46f34 Move logic for "-checker-simple" to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  43. b35a74a Migrated driver logic for running the CF retain/release checker over to the new AnalysisConsumer interface. by Ted Kremenek · 16 years ago
  44. f4381fd Added AnalysisConsumer, a meta-level ASTConsumer class to drive various by Ted Kremenek · 16 years ago
  45. e9484fc Make clang work on 32 bit powerpc linux. by Matthijs Kooijman · 16 years ago
  46. d88fb6c Patch by Anders Bergh: by Ted Kremenek · 16 years ago
  47. 14d4140 Allow -parse-noop -verify options to be used together. by Argyrios Kyrtzidis · 16 years ago
  48. 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
  49. c68ecb5 Fix crash when running with multiple source files. This can be improved. by Ted Kremenek · 16 years ago
  50. e7d07d1 Moved LangOptions from TranslationUnit to ASTContext. This induced a variety of cleanups in some ASTConsumers. by Ted Kremenek · 16 years ago
  51. f372111 Correctly preserve the order between -F and -I options. by Ted Kremenek · 16 years ago
  52. 358256d Use llvm::cl::desc for description of the -Wimplicit-function-declaration option. by Ted Kremenek · 16 years ago
  53. 5b4681c Implement support for -w, which silences all warnings. PR2384. by Chris Lattner · 16 years ago
  54. 1d3cce3 Update driver include paths to work on darwin10. by Ted Kremenek · 16 years ago
  55. 0951052 make #if 0 code compile, even though it still isn't very useful. by Chris Lattner · 16 years ago
  56. 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
  57. 56cf96b Remove the ending "." from clang options descriptions. by Sanjiv Gupta · 16 years ago
  58. b57e3d4 start implementation of a macro rewriter, this is currently just stubbed out. by Chris Lattner · 16 years ago
  59. 37d1084 Add support for -Wimplicit-function-declaration, rdar://5907433 by Chris Lattner · 16 years ago
  60. 8aedf19 Fix PR2281: these two warnings should be promoted to error on by Chris Lattner · 16 years ago
  61. e5c3012 Provide the option to run the CF-retain checker in GC enabled mode. by Ted Kremenek · 16 years ago
  62. 01d9dbf Add -fobjc-gc and -fobjc-gc-only options to the driver. by Ted Kremenek · 16 years ago
  63. c1e9dea TranslationUnit now owns IdentifierTable, TargetInfo, and Selectors objects by Ted Kremenek · 17 years ago
  64. 51574ea simplify the return of InitializePreprocessor to be bool instead of a fileid by Chris Lattner · 17 years ago
  65. aa39197 simplify ownership of the predefines buffer. by Chris Lattner · 17 years ago
  66. 339b9c2 class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 17 years ago
  67. a42cf2e Generate the Preprocessor using a local PreprocessorFactory object. by Ted Kremenek · 17 years ago
  68. a760f5f Added fixme. by Ted Kremenek · 17 years ago
  69. 47abe76 Hook up HTMLDiagnostics to use Chris's new syntax highlighting. --html-diags by Ted Kremenek · 17 years ago
  70. 3245a0a Add a mode of hackily syntax highlighting comments. This has a number of by Chris Lattner · 17 years ago
  71. 8ac661c Add -o support for -emit-html, make it not produce a file on an error. by Chris Lattner · 17 years ago
  72. fdbe679 Remove "--html-test" driver option and its corresponding code; all of this by Ted Kremenek · 17 years ago
  73. b29b427 Rename RewriteTest->RewriteObjC. by Steve Naroff · 17 years ago
  74. 55af98c Added driver option "-checker-opt-analyze-headers" to force the static by Ted Kremenek · 17 years ago
  75. 1102d6b Handle -D and -U options in order, so that they can cancel each other out when by Sam Bishop · 17 years ago
  76. d71ed26 Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 17 years ago
  77. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  78. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
  79. 4dc41cc Inlined clang/Analysis/Analyses/GRSimpleVals.h into LocalCheckers.h and removed by Ted Kremenek · 17 years ago
  80. 88f5cde Added "HTMLDiagnostic", a generic DiagnosticClient (that also implements PathDiagnostic) by Ted Kremenek · 17 years ago
  81. f24964c debian amd64 testing by Andrew Lenharth · 17 years ago
  82. 92d56b7 debian ia32 testing by Andrew Lenharth · 17 years ago
  83. c68ab77 Teach the rewriter how to respect the -o option. by Chris Lattner · 17 years ago
  84. 13e479b Initial experimentation with adding boxed "annotations" to HTMLized source. by Ted Kremenek · 17 years ago
  85. 6a34083 Added the beginning of a set of rewriter functions for pretty-printing source by Ted Kremenek · 17 years ago
  86. 1121519 Only compute targetinfo once and don't leak it. Patch by Sam Bishop! by Chris Lattner · 17 years ago
  87. 4f943c2 Pass LangOptions to RewriteTest(). by Steve Naroff · 17 years ago
  88. f3dabbd Fix a ted-o by Chris Lattner · 17 years ago
  89. 6fd9fa1 simplify triple processing code now that there can be only one arch specified. by Chris Lattner · 17 years ago
  90. ffe0f43 Added --trim-path-graph to the driver to trim paths from the ExplodedGraph by Ted Kremenek · 17 years ago
  91. 2fff37e Added boilerplate to execute the CF reference count checker (which isn't yet implemented). by Ted Kremenek · 17 years ago
  92. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
  93. 985e182 avoid a warning. by Chris Lattner · 17 years ago
  94. dcaa096 Find clang headers in the clang headers dir, search it before by Chris Lattner · 17 years ago
  95. 5f9eae5 Add support for the CPATH, C_INCLUDE_PATH, CPLUS_INCLUDE_PATH, by Chris Lattner · 17 years ago
  96. 4df85f5 fix an interaction between -isystem . and isysroot. by Chris Lattner · 17 years ago
  97. c81c814 convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 17 years ago
  98. 3426b9b enable digraphs for C94, thanks to Neil for pointing this out. by Chris Lattner · 17 years ago
  99. bfc10c9 Modified clang driver option -dump-live-variables to (optionally) use the by Ted Kremenek · 17 years ago
  100. 5f39c2d clang driver options --dump-cfg and --view-cfg now (optionally) use the by Ted Kremenek · 17 years ago