1. 89db21f ccc: Implement support clang PTH using gcc PCH style interface. by Daniel Dunbar · 16 years ago
  2. eb11cd0 Refactor name lookup. by Douglas Gregor · 16 years ago
  3. 2253dc4 CmpDriver: Allow over-ride of drivers to compare through env variables by Daniel Dunbar · 16 years ago
  4. 3cde325 ccc: Finish main clang compiler argument translation. by Daniel Dunbar · 16 years ago
  5. ff03fbb Patch to keep clang honest that it does not yet support by Fariborz Jahanian · 16 years ago
  6. d77b251 Fix typo and spelling of -Wunused-macros. by Daniel Dunbar · 16 years ago
  7. bf985f1 Test explicit constructor by Douglas Gregor · 16 years ago
  8. 09f41cf Introduce support for C++0x explicit conversion operators (N2437) by Douglas Gregor · 16 years ago
  9. be63802 Add a FIXME. by Steve Naroff · 16 years ago
  10. 82fbac5 ccc: Darwin/Compiler: Improve gcc compat in use of -auxbase-strip. by Daniel Dunbar · 16 years ago
  11. bfcbc90 ccc: Implement argument translation for clang. by Daniel Dunbar · 16 years ago
  12. cc9f4f4 ccc: Add hello.{cpp,m} tests. - hello.cpp is XFAIL pending g++ emulation. by Daniel Dunbar · 16 years ago
  13. fb7ea27 ccc: Add -ccc-echo special option, and support pulling CCC_CLANG, by Daniel Dunbar · 16 years ago
  14. 44833db ccc: Use Clang/Compile for Objective-C files as well. by Daniel Dunbar · 16 years ago
  15. 4c92fea Fix a subtle bug in DeclContext::DestroyDecls(). by Steve Naroff · 16 years ago
  16. 33a5d61 ccc: Add dummy Clang/Compile tool and use on Darwin/X86 for C files. by Daniel Dunbar · 16 years ago
  17. fc76761 FunctionDecl::setParams() now uses the allocator associated with ASTContext to allocate the array of ParmVarDecl*'s. by Ted Kremenek · 16 years ago
  18. edd1e2a ccc: Darwin/Compile: Define __private_extern__ when building c++. by Daniel Dunbar · 16 years ago
  19. fa23c1d Implemenent objective-c's NSObject attribute as a way of ddeclaraing c-type by Fariborz Jahanian · 16 years ago
  20. 2839660 PTH: by Ted Kremenek · 16 years ago
  21. ee159c1 Permitting typedefs without a name is a Microsoft/GNU extension by Douglas Gregor · 16 years ago
  22. 7bd88aa Fix corner cases in PTH getSpelling() binary search. by Ted Kremenek · 16 years ago
  23. f02f6f0 PTH: Fix remaining cases where the spelling cache in the PTH file was being missed when it shouldn't. This shaves another 7% off PTH time for -Eonly on Cocoa.h by Ted Kremenek · 16 years ago
  24. 3bd391b ccc: Fix a test case. by Daniel Dunbar · 16 years ago
  25. 5cd9d6d use a slightly more sensible position for an array ref's "getExprLoc" by Chris Lattner · 16 years ago
  26. 25d4a8f ccc: Darwin: Implement some important general argument translations by Daniel Dunbar · 16 years ago
  27. a0fc55f Turn off some Destroy calls that are currenly causing double-destruction of ScopedDecls. We will re-enable this later, when we have time to fully solve the ownership issue. by Douglas Gregor · 16 years ago
  28. 11672ec ccc: Allow internal tool chain specific argument translation. by Daniel Dunbar · 16 years ago
  29. 5385991 Use the unqualified type for GCCs struct/union cast extension by Anders Carlsson · 16 years ago
  30. 9b9ca01 DeclContext::KindTrait was not meant to be used outside of DeclContext::CastTo (causes compilation error on MSVC). by Argyrios Kyrtzidis · 16 years ago
  31. 18a7c8c ccc: Bug fix, '-f...' should be part of the '-f' group. by Daniel Dunbar · 16 years ago
  32. ab13061 Add simple tool for comparing drivers (hardcoded to gcc and xcc) which by Daniel Dunbar · 16 years ago
  33. 841ceea ccc: Darwin/Link also runs dsymutil in one very particular situation. by Daniel Dunbar · 16 years ago
  34. ca04ce4 Print function parameters in DeclContextPrinter. by Zhongxing Xu · 16 years ago
  35. 7629053 ccc: Bug fix and gcc compatibility tweak. by Daniel Dunbar · 16 years ago
  36. 8bf90fd ccc: Add option groups. by Daniel Dunbar · 16 years ago
  37. 906fed0 Warn when someone tries to pass a variable with a non-POD type to a varargs function/method/block. by Anders Carlsson · 16 years ago
  38. 518fda1 Fix argument-passing bugs in a call to object by Douglas Gregor · 16 years ago
  39. 11505a9 ccc: Darwin/CC1: Hardcode (for now) some -m options to match gcc. by Daniel Dunbar · 16 years ago
  40. 1f73ecb ccc: Allow host to over-ride default arch based on command line by Daniel Dunbar · 16 years ago
  41. 2a3eb0e Improve c++ methods printing in DeclContextPrinter. by Zhongxing Xu · 16 years ago
  42. 9c2a3db add a fixme. by Zhongxing Xu · 16 years ago
  43. 867c39e Improve DeclContextPrinter: print enum name. by Zhongxing Xu · 16 years ago
  44. 4998888 Bug fix, __private_extern__ globals were always introducing a definition. by Daniel Dunbar · 16 years ago
  45. 5834ed6 Add KillStruct to region store. by Zhongxing Xu · 16 years ago
  46. 1601ce4 Updated checker build. by Ted Kremenek · 16 years ago
  47. 2d75d6f Add an initial framework of a DeclContextPrinter. It can print DeclContext and by Zhongxing Xu · 16 years ago
  48. 8b4bf90 Patch to fix encoding of Enum bitfields in ObjC. by Fariborz Jahanian · 16 years ago
  49. e3a46b0 This test now passes. by Ted Kremenek · 16 years ago
  50. 93a08e6 ccc: Darwin/CC1: Be bug compatible with gcc in a corner case. by Daniel Dunbar · 16 years ago
  51. e1c2a67 static analyzer: Handle casts from arrays to integers. This fixes PR 3297. by Ted Kremenek · 16 years ago
  52. bbee1a7 Invert condition on branch (was causing RegionStore::ArrayToPointer to return 'unknown' on most cases. by Ted Kremenek · 16 years ago
  53. 88b4bf2 Add the proper restrictions on the left-hand argument of a built-in by Douglas Gregor · 16 years ago
  54. e63ef48 Make sure we don't name a constructor or destructor with a qualified by Douglas Gregor · 16 years ago
  55. 35c3329 Patch to implement code gen for aggrgate-valued property used by Fariborz Jahanian · 16 years ago
  56. 482b77d Cleanup DeclContext::addDecl and DeclContext::insert interface, from Piotr Rak by Douglas Gregor · 16 years ago
  57. 3f20a68 Update C++ status and add a few more tests of overloading for member function calls by Douglas Gregor · 16 years ago
  58. 0fdea46 Fix test case (incomplete "expected-warning" line) by Ted Kremenek · 16 years ago
  59. d30ef87 Patch by Roman Divacky: by Ted Kremenek · 16 years ago
  60. ee49d04 Fix crasher due to use-after-release: DeclContext now owns all ObjCMethodDecls, and shouldn't be released elsewhere. by Ted Kremenek · 16 years ago
  61. 4920f1f Implement support for anonymous structs and unions in C. Both C and by Douglas Gregor · 16 years ago
  62. 1e0ead4 ccc: Bug fix, output can be NULL. by Daniel Dunbar · 16 years ago
  63. 1261938 retain/release checker: by Ted Kremenek · 16 years ago
  64. b37c965 ccc: Even more Darwin/cc1 argument translation support. by Daniel Dunbar · 16 years ago
  65. 491c7b7 (LLVM up) Match TargetData API change in LLVM TOT. by Daniel Dunbar · 16 years ago
  66. d1fa644 Patch to supprt case of readonly property being by Fariborz Jahanian · 16 years ago
  67. 3ecc20f ccc: Add leading space in -### output to match gcc. by Daniel Dunbar · 16 years ago
  68. dff9f50 ccc: (Darwin) More argument translation for Darwin/Compile tool. by Daniel Dunbar · 16 years ago
  69. 1a0d31a Properly set the scope of non-fields declared within a struct, union, by Douglas Gregor · 16 years ago
  70. 816dd50 ccc: (Darwin) More argument translation for Darwin/Compile tool. by Daniel Dunbar · 16 years ago
  71. 6325fcf ccc: (Darwin) Start implementing argument translation for Darwin/Compile tool. by Daniel Dunbar · 16 years ago
  72. 3235fdb ccc: When constructing a named output, only use base name (not full path). by Daniel Dunbar · 16 years ago
  73. 9cb2253 ccc: (Darwin) Move path resolution into ToolChain. by Daniel Dunbar · 16 years ago
  74. 996ce96 ccc: Implement the rest of Darwin/Assembler argument translation. by Daniel Dunbar · 16 years ago
  75. 4a0ba1a ccc: Implement macosx-version-min conditions (including a bug fix). by Daniel Dunbar · 16 years ago
  76. 9c257c3 ccc: Generalize Darwin/Link tool based on Darwin version. by Daniel Dunbar · 16 years ago
  77. 2ec55bc ccc: Support arguments which behave like linker inputs. by Daniel Dunbar · 16 years ago
  78. ee8cc26 ccc: (Darwin) Pass -ObjC to linker if -ObjC, -ObjC++ or -fobjc is present. by Daniel Dunbar · 16 years ago
  79. ebaae2a Handle multi-value inputs by Anders Carlsson · 16 years ago
  80. 0e936db Make sure to initialize the ConstraintInfo to 0 by Anders Carlsson · 16 years ago
  81. 2a18dfe some more minor asqualtype bugs. by Chris Lattner · 16 years ago
  82. 4bbce99 improve some more is*Type predicates to look through asqualtypes. by Chris Lattner · 16 years ago
  83. 863ea9a testcase that works now with r62061 by Chris Lattner · 16 years ago
  84. f728a4a simplify these predicates a bit. by Chris Lattner · 16 years ago
  85. 32f6209 make ScalarExprEmitter::EmitCompare() emit the expression with the correct type instead of always zext it to an int by Nuno Lopes · 16 years ago
  86. 9c199a0 ccc: Add fairly complete argument translation for Darwin link step. by Daniel Dunbar · 16 years ago
  87. 0fe5a4f ccc: Add several convenience methods for argument translation. by Daniel Dunbar · 16 years ago
  88. 6f5d65a ccc: Add and name a host of arguments. by Daniel Dunbar · 16 years ago
  89. bee1f0d ccc: Give the Host an opportunity to switch ToolChains when binding by Daniel Dunbar · 16 years ago
  90. e99f926 ccc: Print -### output on stderr to match gcc. by Daniel Dunbar · 16 years ago
  91. 9f2505b More inline asm fixes by Anders Carlsson · 16 years ago
  92. d7a7c00 make paste avoidance avoid pasting digraphs and :: only when digraphs or c++ is enabled by Chris Lattner · 16 years ago
  93. 2763b3a Handle readwrite constraints correctly by Anders Carlsson · 16 years ago
  94. c8c7b18 Forgot to commit this by Anders Carlsson · 16 years ago
  95. 6347172 Use a common function for emitting asm inputs and remove a FIXME by Anders Carlsson · 16 years ago
  96. 02fbb25 this patch "adds support for specifying multiple dependancy targets using ‘-MT’. Using this patch, I was able to use ‘ccc’ as C compiler for the few C files in LLVM. In my brief testing, the output remains identical to that of GCC." by Chris Lattner · 16 years ago
  97. 2726f9a Fix operator precedence. by Sebastian Redl · 16 years ago
  98. 93983f8 Convert property implementation to DeclContext::addDecl(). by Steve Naroff · 16 years ago
  99. 6327e0d A few property related cleanups to ObjCContainerDecl AST. by Steve Naroff · 16 years ago
  100. de30747 Convert some more actions to smart pointers. by Sebastian Redl · 16 years ago