1. 2979ec7 The dtor CGObjCRuntime::~CGObjCRuntime() was implemented twice, once by Ted Kremenek · 16 years ago
  2. 393be15 Add SemaDeclCXX.cpp to Xcode project. by Ted Kremenek · 16 years ago
  3. 70bcba6 Micro-optimization: Don't use ostringstream when using a C-string literal by Ted Kremenek · 16 years ago
  4. fa34b33 Added some boilerplate for emitting warnings from the CF-reference count checker. by Ted Kremenek · 16 years ago
  5. 6837faa Added new "BugReporterHelper" class which is used by BugReporter to emit by Ted Kremenek · 16 years ago
  6. f5749aa For -emit-html, use the Rewriter to expand tabs. by Ted Kremenek · 16 years ago
  7. fa5be36 Don't expand tabs in EscapeText, but rather expand them when writing out by Ted Kremenek · 16 years ago
  8. 5dd18b7 Add HTMLRewrite.h to Xcode project. by Ted Kremenek · 16 years ago
  9. 4ce32cb When substituting tabs during HTMLification, only add " " when we are by Ted Kremenek · 16 years ago
  10. dab4ead Improve range highlighting in HTMLDiagnostic to correctly highlight ranges by Ted Kremenek · 16 years ago
  11. 25ba026 Make SourceManager::getFullFilePos() public. by Ted Kremenek · 16 years ago
  12. 670aa9d Changed the Decl::Kind enum of the ObjCPropertyDecl class, so that it follows by Sam Bishop · 16 years ago
  13. 0b6c153 Set the location of ccc-analyzer to be the same directory as where scan-build by Ted Kremenek · 16 years ago
  14. 0676751 silence some warnings when assertions are disabled. by Chris Lattner · 16 years ago
  15. 3d1cee3 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  16. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 16 years ago
  17. 5db17c9 Fix rdar://5846705: "clang -E foo.c -o foo.i" should remove foo.i on error. by Chris Lattner · 16 years ago
  18. 356708c Add ids for line numbers, allowing us to jump to arbitrary line numbers within by Ted Kremenek · 16 years ago
  19. d8c6d0c Left-justify text in report table. by Ted Kremenek · 16 years ago
  20. 7e54eed Tweak message bubble color (gold) by Ted Kremenek · 16 years ago
  21. 706e3cf Improve BugReport diagnostics for loops and ? operator. by Ted Kremenek · 16 years ago
  22. 6e9d38e Fix analyzer breakage introduced by r49213: http://llvm.org/viewvc/llvm-project?rev=49213&view=rev by Ted Kremenek · 16 years ago
  23. e2563ca Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 16 years ago
  24. d77bc28 Have Parser::FuzzyParseMicrosoftAsmStatement() return the null statement (';'). by Steve Naroff · 16 years ago
  25. 5426bf6 random whitespace fixes. by Chris Lattner · 16 years ago
  26. 8c7bbb5 fix a bug I introduced in my previous checkin. by Chris Lattner · 16 years ago
  27. acc9972 simplify array compatibility testing. by Chris Lattner · 16 years ago
  28. 8f8fc7b simplify reference handling. by Chris Lattner · 16 years ago
  29. 6ac46a4 move some code around, no other change. by Chris Lattner · 16 years ago
  30. 78eca28 simplify compatibility testing for tag types. by Chris Lattner · 16 years ago
  31. b048981 merge compatibility testing of qualified/unqualified interfaces together by Chris Lattner · 16 years ago
  32. 1ee0700 Fix a really bad bug where type uniquing would merge a<x> with b<x> as the same by Chris Lattner · 16 years ago
  33. 42a997c MyOtherClass<MyProtocol>* is compatible with MyClass* by Chris Lattner · 16 years ago
  34. 3cc4c0c Remove a dead check for compatible builtin types by Chris Lattner · 16 years ago
  35. 6e26f5d futher simplify compatibility testing of objc interface types. by Chris Lattner · 16 years ago
  36. a36a61f ocuvector and vector should be compatible. Fix ASQual compatibility. by Chris Lattner · 16 years ago
  37. f3692dc Fix comment typo, do reference eval at the correct type. by Chris Lattner · 16 years ago
  38. f62f9cd simplify vector type compatibility testing. by Chris Lattner · 16 years ago
  39. eca7be6 move ObjCQualifiedIdTypesAreCompatible out of ASTContext into Sema. by Chris Lattner · 16 years ago
  40. 821a01b Replace an O(n^2) algorithm in areCompatObjCQualInterfaces with by Chris Lattner · 16 years ago
  41. 372bed0 improve comments. by Chris Lattner · 16 years ago
  42. 88cb27a move sorting of qualifying protocols from the parser into by Chris Lattner · 16 years ago
  43. 28c0b7d add an example. by Chris Lattner · 16 years ago
  44. 065f0d7 eliminate getReferencedProtocols from by Chris Lattner · 16 years ago
  45. 3b27546 make QualifiedInterfaceTypesAreCompatible a static function by Chris Lattner · 16 years ago
  46. 53efc25 This predicate is just a generic "issuperclass" predicate, move it to the by Chris Lattner · 16 years ago
  47. c4e4059 Simplify some objc compatibility testing, make interfaceTypesAreCompatible by Chris Lattner · 16 years ago
  48. 439dbad simplify the logic in ASTContext::objcTypesAreCompatible by Chris Lattner · 16 years ago
  49. 368eefa clean up some logic in objc type handling. Specifically, make it so that by Chris Lattner · 16 years ago
  50. 1361b11 trivial changes to getFloatingTypeOfSizeWithinDomain, nothing significant. by Chris Lattner · 16 years ago
  51. 7cfeb08 simplify max type computation by making it return an integer (like by Chris Lattner · 16 years ago
  52. a75cea3 minor simplifications/cleanups to type comparisons. by Chris Lattner · 16 years ago
  53. 8bcfc5b remove the Decl::getCanonicalType() method. by Chris Lattner · 16 years ago
  54. d8bdba5 remove a use of getCanonicalType. by Chris Lattner · 16 years ago
  55. f52ab25 Start switching clients over from CT.getCanonicalType() to Context.getCanonicalType(CT) for PR2189. by Chris Lattner · 16 years ago
  56. 77c9647 introduce a new ASTContext::getCanonicalType method. This is the first by Chris Lattner · 16 years ago
  57. 9d294b9 remove the old non-parallel test system. 'make' in clang/test now runs by Chris Lattner · 16 years ago
  58. 37c1b78 Use EnumType to simplify some code. by Chris Lattner · 16 years ago
  59. 7176331 make use of EnumType to simplify some code, eliminate warnings by Chris Lattner · 16 years ago
  60. 2daa5df Make EnumType/RecordType classof predicates simpler and more efficient in by Chris Lattner · 16 years ago
  61. 5edb8bf add a helper EnumType object for asking about tagtypes for enums. by Chris Lattner · 16 years ago
  62. 984d0b4 tracking API changes arising from r49277 by Gabor Greif · 16 years ago
  63. 3420766 move a semantic check out of the parser into sema. by Chris Lattner · 16 years ago
  64. f97409f now that identifier list parsing is split out, simplify handling of by Chris Lattner · 17 years ago
  65. 3825c2e reject 'int test(x, x) int x; {}' by Chris Lattner · 17 years ago
  66. aaf9ddb reject 'typedef int y; int test(x, y)'. by Chris Lattner · 17 years ago
  67. 50c6477 simplify Parser::ParseFunctionDeclaratorIdentifierList by Chris Lattner · 17 years ago
  68. 66d2865 split parsing of identifier lists in function declarators out into by Chris Lattner · 17 years ago
  69. 3e3d310 minor simplification by Chris Lattner · 17 years ago
  70. 2a2819a finish up throw parsing. by Chris Lattner · 17 years ago
  71. ef4715c split code for handling grouping parens in declarators from code that by Chris Lattner · 17 years ago
  72. a711dd0 another minor simplification by Chris Lattner · 17 years ago
  73. 5dcc6ce Use token lookahead to simplify some code that is rarely executed. by Chris Lattner · 17 years ago
  74. 5619688 Fix a bug I introduced in my const'ification patch. by Chris Lattner · 17 years ago
  75. b048c98 This patch contains these changes: by Chris Lattner · 17 years ago
  76. 6ccb91a fix css font name, patch by Cédric Venet by Chris Lattner · 17 years ago
  77. 19bf719 don't dereference hte end iterator when inserting at end of buffer. by Chris Lattner · 17 years ago
  78. 3ae30f8 templates can't be static. by Chris Lattner · 17 years ago
  79. e0def75 fix a number of const qualification bugs. by Chris Lattner · 17 years ago
  80. 5483bdf add a missing #include by Chris Lattner · 17 years ago
  81. d658b56 Fix handling of implicit int, resolving PR2012 and reverting (and by Chris Lattner · 17 years ago
  82. a798ebc Step #1 to fixing PR2012: c89 allows declspecs to be completely by Chris Lattner · 17 years ago
  83. b10f273 Avoid implicitly including any header files (requested by ckane). by Steve Naroff · 17 years ago
  84. c5e3277 Rewrite @package (an ObjC 2.0 idiom). by Steve Naroff · 17 years ago
  85. 563b828 Fix MS-specific bug in RewriteTest::RewriteObjCMethodDecl(). by Steve Naroff · 17 years ago
  86. d98aab5 Add BugReporter.cpp to VC++ project file. by Steve Naroff · 17 years ago
  87. 0c29b22 Support MS-specific integer suffixes (i8, i16, i32, i64, i128). by Steve Naroff · 17 years ago
  88. f81557c Fix PR2049, updating Eli's patch that fixes to mainline. This produces incorrect by Chris Lattner · 17 years ago
  89. b6e64c5 Rename ScopedDecl::getContext() -> getContextDecl(). Two motivations: by Steve Naroff · 17 years ago
  90. 8ace0d5 Add DeclBase.h to Xcode project. by Steve Naroff · 17 years ago
  91. 9b2dc28 Since isComplexType() no longer returns true for _Complex integers, the code by Chris Lattner · 17 years ago
  92. f23d364 add an isAnyComplexType() method, which returns true for both by Chris Lattner · 17 years ago
  93. 72858c9 updates from David. by Chris Lattner · 17 years ago
  94. be09ede various bug fixes, add to xcode project. by Chris Lattner · 17 years ago
  95. 7ba9c60 initial checkin of Étoilé runtime support, patch by David Chisnall by Chris Lattner · 17 years ago
  96. e2ef815 Add explicit support for diagnosing implicit function decls. by Steve Naroff · 17 years ago
  97. d389465 - ccc: print generated command line to stdout instead of stderr by Seo Sanghyeon · 17 years ago
  98. 63f067f PR1963: Address of function is a constant expression by Seo Sanghyeon · 17 years ago
  99. 730f2c1 fix build error: add missing braces. by Torok Edwin · 17 years ago
  100. 0ed844b Introduce ContextDecl, patch by Argiris Kirtzidis! by Chris Lattner · 17 years ago