1. 99192f7 Commented out header with no section body. Will write this eventually. by Ted Kremenek · 17 years ago
  2. acfec76 Added some documentation on clang CFGs. It is very rough. by Ted Kremenek · 17 years ago
  3. ee1de13 by Steve Naroff · 17 years ago
  4. 13326a4 avoid accessing off the end of identifiers. by Chris Lattner · 17 years ago
  5. 663733e Emit a warning when the body of an if block is a NullStmt. by Anders Carlsson · 17 years ago
  6. 3eddc86 clang -E should not print tokens from the predefines buffer. by Chris Lattner · 17 years ago
  7. 13569e4 Updated VC++ build system. by Hartmut Kaiser · 17 years ago
  8. 18b4ced Added idea for a simple C++ checker. by Ted Kremenek · 17 years ago
  9. d8c4f14 add an idea by Chris Lattner · 17 years ago
  10. 77cec47 resolve a fixme, by moving __builtin_va_list to a more logical by Chris Lattner · 17 years ago
  11. bd5c5fb by Steve Naroff · 17 years ago
  12. 415c183 by Steve Naroff · 17 years ago
  13. 5c222c8 Add a dummy for the id typedef. Steve, plz fill this in. :) by Chris Lattner · 17 years ago
  14. d1f21e1 Make a significant change to invert the control flow handling by Chris Lattner · 17 years ago
  15. 9637a9b by Steve Naroff · 17 years ago
  16. 706f844 Recognize while(1) and avoid extra blocks. by Devang Patel · 17 years ago
  17. d90f134 new test by Devang Patel · 17 years ago
  18. 6223149 avoid a noop virtual method call on the hot scope poping path. by Chris Lattner · 17 years ago
  19. 716d02c Recognize "do {} while (0)" idiom and avoid extra basic blocks. by Devang Patel · 17 years ago
  20. 638b64c Use LLVMFoldingBuilder by Devang Patel · 17 years ago
  21. e51672d Remove comment about protocols and namespace no longer relevant. by Fariborz Jahanian · 17 years ago
  22. c53cc70 Minor code clean up to make it more readable. by Fariborz Jahanian · 17 years ago
  23. 042e6e8 Update DeclKind enums to reflect ObjcProtocolDecl's inheritance change. by Chris Lattner · 17 years ago
  24. ac142de Remove addition of protocol names to declaration scopes, use a separate by Fariborz Jahanian · 17 years ago
  25. 3b49415 convert driver over to use Token::is/isNot APIs. fwew, all done. by Chris Lattner · 17 years ago
  26. cb8e41c Switch lexer/pp over to new Token::is/isNot api by Chris Lattner · 17 years ago
  27. a1d2bb7 swtich to Token::is/isNot by Chris Lattner · 17 years ago
  28. 4d7d234 switch more code to use Token::is/isNot where possible. by Chris Lattner · 17 years ago
  29. 34a01ad switch some more of the parser over to using Token::is and isNot by Chris Lattner · 17 years ago
  30. 17a5fb6 Add two new Token helper functions, "is" and "isNot". This allows us to write by Chris Lattner · 17 years ago
  31. c5a342d Added better comment about protocol list for class ObjcQualifiedInterfaceType. by Fariborz Jahanian · 17 years ago
  32. ea14870 rename some "Parse" actions to "ActOn". Move code around in by Chris Lattner · 17 years ago
  33. 74f3535 Use const& for RHS. by Devang Patel · 17 years ago
  34. bc37238 Fix comment. Describe what it is, instead of how it is used. by Devang Patel · 17 years ago
  35. b3240c7 Prevent memory leak by not creating a category object when there is a by Fariborz Jahanian · 17 years ago
  36. 90120e8 by Steve Naroff · 17 years ago
  37. c04aff1 Added a new class for Interfaces qualified by protocol list. by Fariborz Jahanian · 17 years ago
  38. 3fc5419 by Steve Naroff · 17 years ago
  39. 3289bca Rename FileVariable -> FileVar for consistency with its class name, by Chris Lattner · 17 years ago
  40. ef93303 add a comment. by Chris Lattner · 17 years ago
  41. c363d79 Move identifierTable.h to the right folder. by Chris Lattner · 17 years ago
  42. 7711ee3 by Steve Naroff · 17 years ago
  43. 347ca32 Code gen case statement ranges. by Devang Patel · 17 years ago
  44. ac20be2 Several small patches to do pretty printing for objective-c top-level decls by Fariborz Jahanian · 17 years ago
  45. 935877d Removed unnecessary base class from some of objective-c classes: by Fariborz Jahanian · 17 years ago
  46. 1c4c35e Return NULL on invalid protocol. by Fariborz Jahanian · 17 years ago
  47. 0951cb9 remove unneeded #include by Chris Lattner · 17 years ago
  48. 2fd1c65 move IdentifierTable.h from liblex to libbasic. by Chris Lattner · 17 years ago
  49. aa9bdf1 implement the Token class in the Lexer.cpp file instead of IdentifierInfo.cpp by Chris Lattner · 17 years ago
  50. 7a1b088 improve layering: by Chris Lattner · 17 years ago
  51. 3b56a01 change calls to getMacroInfo into hasMacroDefinition() where possible. by Chris Lattner · 17 years ago
  52. 4826cbc add a hasMacroDefinition() method to IdentifierInfo, strength reduce a by Chris Lattner · 17 years ago
  53. 98990208 update comment. by Chris Lattner · 17 years ago
  54. 11f3277 Remove the PPID bitfield from IdentifierInfo, shrinking it by a word by Chris Lattner · 17 years ago
  55. 0371c0e First step to fixing a long lived layering violation: this by Chris Lattner · 17 years ago
  56. 680f705 The identifier shouldn't be added to the scope, the decl should. by Chris Lattner · 17 years ago
  57. b2aa7ce classof isn't right. This is causing assertion failures somehow now. by Chris Lattner · 17 years ago
  58. 70f10f6 Shrink the builtinID down by 3 bits, allowing all the bitfields to by Chris Lattner · 17 years ago
  59. eb8c963 Rename ASTStreamers.* -> ASTConsumers.* by Chris Lattner · 17 years ago
  60. d031a45 simplify the interfaces to create selectors: getSelector can take any by Chris Lattner · 17 years ago
  61. 64610dd simplify some Selector interfaces. by Chris Lattner · 17 years ago
  62. a7a191c move ImplementationClassInfo out of ASTContext into Sema. by Chris Lattner · 17 years ago
  63. e8d6ae7 add comments. by Chris Lattner · 17 years ago
  64. 79b0084 switch ObjcCategoryImplDecl over to being a NamedDecl, remove dead ctor argument. by Chris Lattner · 17 years ago
  65. 910435b introduce a new NamedDecl class, switch a couple of things over to using it. by Chris Lattner · 17 years ago
  66. 8d336ee Every decl has a SourceLocation, move the location info into the Decl class instead of being in subclasses. by Chris Lattner · 17 years ago
  67. 605cc84 future notes & minor changes by Kevin · 17 years ago
  68. 2443d91 simplify the interface to create ObjcClassDecl's. by Chris Lattner · 17 years ago
  69. 6b1ed8d simplify the interface for creating ObjcForwardProtocolDecl by Chris Lattner · 17 years ago
  70. a845bbe add a missing ; by Chris Lattner · 17 years ago
  71. d5c9d3d stub out some printing of objc decls. by Chris Lattner · 17 years ago
  72. 0db667a speed up clang startup another 28% by avoiding std::vector<std::string> by Chris Lattner · 17 years ago
  73. 8c9d29f speed up clang startup time by about 23% by avoiding lots of by Chris Lattner · 17 years ago
  74. a02a398 fix grammaro by Chris Lattner · 17 years ago
  75. 4651ab6 edits by Chris Lattner · 17 years ago
  76. 1ce4e4e fix accidental commit by Chris Lattner · 17 years ago
  77. 29e3db3 edits by Chris Lattner · 17 years ago
  78. 322fe70 various minor edits, e.g. & -> &amp; by Chris Lattner · 17 years ago
  79. 96a8ca2 New directory. by Kevin · 17 years ago
  80. 5bbaee2 add a warning. by Chris Lattner · 17 years ago
  81. 21f9473 minor edits by Chris Lattner · 17 years ago
  82. 28db74b Fix spacing issues. by Bill Wendling · 17 years ago
  83. c440f21 Just say "No" to non-ASCII things. by Bill Wendling · 17 years ago
  84. ba4789a Remove non-ASCII ' by Bill Wendling · 17 years ago
  85. afda30a 1. May fix encoding issues: server uses UTF; HTML file assumes Western (ISO 8859-1). by Kevin · 17 years ago
  86. 6f11f6a Modifications to XCode project: by Ted Kremenek · 17 years ago
  87. 94067f8 Removed DataflowStmtVisitor. It is no longer used, and is obsoleted by Ted Kremenek · 17 years ago
  88. 0210cfb A message on the main page about bulding clang. by Kevin · 17 years ago
  89. b3b52c4 new site -- the rest of it by Kevin · 17 years ago
  90. 8daceaf new site by Kevin · 17 years ago
  91. a096e1d This is the first patch toward supporting protocol conforming by Fariborz Jahanian · 17 years ago
  92. cf9dbf2 Support case statement ranges. by Devang Patel · 17 years ago
  93. ec808cb Per request... about to make changes to the website. by Kevin · 17 years ago
  94. 48ed6f8 Implement DenseMapInfo for Selector, allowing use of DenseMap/DenseSet of by Chris Lattner · 17 years ago
  95. f9e80db by Steve Naroff · 17 years ago
  96. 67907bd Patch for 1) Checking for duplicate methods decls in intterface and category. by Fariborz Jahanian · 17 years ago
  97. e58e080 switch statement code gen. by Devang Patel · 17 years ago
  98. 37c9c61 this patch accomodates clattner's comments on expression processing in @try-statement. by Fariborz Jahanian · 17 years ago
  99. 84082af More tab removal activity. by Fariborz Jahanian · 17 years ago
  100. d77ce0e minor cleanups, make code more defensive, less branchy in Selector ctor. by Chris Lattner · 17 years ago