1. 59f1ed2 Revert -Wdiscard-qual typo by Douglas Gregor · 14 years ago
  2. 8d43808 Check for casts to an incomplete type in C. Improves diagnostics for cast to by Eli Friedman · 14 years ago
  3. ac0021b Added PCH/ASTImporter code for ObjCIvarDecl's field. by Fariborz Jahanian · 14 years ago
  4. 920bf45 Add another terrible VC++ compatibility hack: allow users to by Chris Lattner · 14 years ago
  5. ee30965 Revert r108617, it broke the build. by Benjamin Kramer · 14 years ago
  6. 69b8194 Prepare the analyzer for the callee in another translation unit: by Zhongxing Xu · 14 years ago
  7. ad51e74 Patch to synthesize property ivars on demand as by Fariborz Jahanian · 14 years ago
  8. fbd4bf1 Teach the PCH reader to load the dependency when encountering a chain metadata record. WIP by Sebastian Redl · 14 years ago
  9. 27de0f2 Fix typeid the same way I fixed sizeof. Sad I had missed it before. by Craig Silverstein · 14 years ago
  10. bb09d1e Remove unicode quotes characters that somehow made it into a recent commit of mine. by Ted Kremenek · 14 years ago
  11. cdf3b83 Separate out the initial loading of a PCH so that loading chained PCHs can reuse it. by Sebastian Redl · 14 years ago
  12. df4ca42 Improved false positive rate for the idempotent operations checker and moved it into the default path-sensitive analysis options. by Tom Care · 14 years ago
  13. 35dda71 Give the 'self/array-comparison is always true/false' warning a new flag, by Nick Lewycky · 14 years ago
  14. b7c2101 Hook up warning for an incomplete scanlist in scanf format strings. by Ted Kremenek · 14 years ago
  15. 32d0900 Tweak zero-field width in scanf format string diagnostic. by Ted Kremenek · 14 years ago
  16. 9137a52 First baby steps towards PCHReader being able to keep track of multiple PCH files. WIP by Sebastian Redl · 14 years ago
  17. 1cbb50a Make this destructor virtual to placate GCC's warnings. by Chandler Carruth · 14 years ago
  18. cf4679e Fix up some of the visiting for array types -- we weren't good about by Craig Silverstein · 14 years ago
  19. 31eb18c Initialize a couple of fields inherited for our private use. by John McCall · 14 years ago
  20. 1476ed4 Add a little more data to chained PCHs. WIP by Sebastian Redl · 14 years ago
  21. a0ebd60 Revert Microsoft-specific override of the "typedef requires a name" by Douglas Gregor · 14 years ago
  22. c9068d7 Treat template parameters as part of the declaration-specifiers for the by John McCall · 14 years ago
  23. 34fa294 Make this grossness default to the error it should always be. by Chandler Carruth · 14 years ago
  24. b21fc4a Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. by Chandler Carruth · 14 years ago
  25. 826a345 Add most of the boilerplate support for scanf format string checking. This includes by Ted Kremenek · 14 years ago
  26. bee05c1 Add builtin definition for scanf, including extending the builtin encoding to by Ted Kremenek · 14 years ago
  27. 1058253 Builtins/ARM: __clear_cache doesn't seem to have a consistent prototype, declare by Daniel Dunbar · 14 years ago
  28. 754b9fb IRgen: Support user defined attributes on block runtime functions. by Daniel Dunbar · 14 years ago
  29. d55519b Driver/Darwin: Allow -m{ios,macosx}-version-min= to be passed with -Xarch. by Daniel Dunbar · 14 years ago
  30. 40228c1 Driver: Support 'clang -x ir ...'. by Daniel Dunbar · 14 years ago
  31. 30c514c Add a callback interface that allows interested parties to get notified whenever PCHReader deserializes a type or decl (and possibly other things in the future). Have PCHWriter implement these callbacks as noops and register to receive them if we're chaining PCHs. This will allow PCHWriter to track the IDs of these things, which it needs to write the dependent files. WIP by Sebastian Redl · 14 years ago
  32. dacf9dd CodeGen/ObjC/NeXT: Fix Obj-C message send to match llvm-gcc when choosing by Daniel Dunbar · 14 years ago
  33. ec1b1cc Pass StringRefs by value. by Benjamin Kramer · 14 years ago
  34. 07a353c Increase the max PCH level for declarations to 7. Add a FromPCH flag to types. by Sebastian Redl · 14 years ago
  35. b9a8226 Driver: When re'execing clang, use path to the main executable instead of by Daniel Dunbar · 14 years ago
  36. 4a7e889 Driver: Remove some unused arguments. by Daniel Dunbar · 14 years ago
  37. 7e9ad8b Make PCHReader cope with PCH files containing more than one predefines buffer. by Sebastian Redl · 14 years ago
  38. 5495f37 Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'. by Chandler Carruth · 14 years ago
  39. 47e879d Driver/Darwin: Pass -pie/-no_pie to the linker when -fpie/-fno-pie and friends by Daniel Dunbar · 14 years ago
  40. e39a389 Introduce a new cast kind for an "lvalue bitcast", which handles by Douglas Gregor · 14 years ago
  41. 99f2680 Add __builtin_snprintf. by Nick Lewycky · 14 years ago
  42. 77a3c9e Add two small utility functions to PCHReader that the writer will use. WIP. by Sebastian Redl · 14 years ago
  43. 90a8f27 Add a warning to catch a bug recently caught by code review, like this: by Chris Lattner · 14 years ago
  44. 6398235 Whenever we're creating an expression that is typically an rvalue by Douglas Gregor · 14 years ago
  45. e4b8f11 Properly add to 32 by Douglas Gregor · 14 years ago
  46. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 14 years ago
  47. 9b36c3f Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos. by Argyrios Kyrtzidis · 14 years ago
  48. de80ec1 Improve diagnostics for the "type qualifier on return type has no by Douglas Gregor · 14 years ago
  49. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  50. aef0199 Diagnose typedef of an operator name. Fixes PR7462 by Douglas Gregor · 14 years ago
  51. 8dd0c56 Instantiate attributes when first building an instantiated VarDecl. by Fariborz Jahanian · 14 years ago
  52. 669eed8 Provide a special diagnostic for attempts to explicitly specialize by Douglas Gregor · 14 years ago
  53. dd41ed5 Fix a documentation paste-o and eliminate a useless function parameter, both found by Sebastian by Douglas Gregor · 14 years ago
  54. cdbcad0 We should not be recursing over the shadow definitions in UsingDecl -- by Craig Silverstein · 14 years ago
  55. f9ea1f3 Produce an error on encountering a pointer or reference to a qualified function type. Fixes PR7470. by Sebastian Redl · 14 years ago
  56. 1dc13a1 Split the normal and chained PCH writing paths and add a tiny bit of implementation to the latter. WIP. by Sebastian Redl · 14 years ago
  57. cad8d31 Copy over attributes to instantiated variable. by Fariborz Jahanian · 14 years ago
  58. 03569ea If we are past tok::eof and in caching lex mode, avoid caching repeated tok::eofs. by Argyrios Kyrtzidis · 14 years ago
  59. 84ca008 Compute Type dependent-ness of BlockDeclRefExpr on the fly when constructing it. by Fariborz Jahanian · 14 years ago
  60. 52bc56a Move setting of Dependent Type to BlockDeclRefExpr's constructor. by Fariborz Jahanian · 14 years ago
  61. 184aa4e fix PR7280 by making the warning on code like this: by Chris Lattner · 14 years ago
  62. 9b3215d change the 'invalid token after top level declarator' message to be by Chris Lattner · 14 years ago
  63. 004659a Fix PR7617 by not entering ParseFunctionDefinition when by Chris Lattner · 14 years ago
  64. c82daef add a const qualifier, refactor some code. by Chris Lattner · 14 years ago
  65. 6d00c13 Add PCH support for the remaining C++ exprs. by Argyrios Kyrtzidis · 14 years ago
  66. c61bb20 Slightly improve the diagnostic when using a qualified function typedef to declare nonmember or static member functions. by Sebastian Redl · 14 years ago
  67. 77f4603 When given the -chained-pch option and a previous PCH file, have the PCHWriter emit a CHAINED_METADATA record instead of METADATA, and write a link to the previous file there. by Sebastian Redl · 14 years ago
  68. 04821c7 Ignore -Wno-main, per PR7269. by Eli Friedman · 14 years ago
  69. 27f46ee Refer to implicit "conversions" rather than implicit "casts", which by Douglas Gregor · 14 years ago
  70. a0068fc Introduce -f{no-}spell-checking options to enable/disable by Douglas Gregor · 14 years ago
  71. 6b3f1eb Move traverseunqualifiedtypeloc over to the 'main' typeloc tree. by Craig Silverstein · 14 years ago
  72. d6ac452 Add a frontend option -chained-pch and don't pass an active PCH reader to the PCH writer if it is not set, preventing creation of chained PCH files. Since the reader is so far unused, effectively no functionality change. by Sebastian Redl · 14 years ago
  73. 40ed9a1 Support code completion for parameter names in Objective-C method declarations. by Douglas Gregor · 14 years ago
  74. 1f5537a Introduce a new code-completion point prior to an identifier in the by Douglas Gregor · 14 years ago
  75. a93e3b5 Some preparatory work for chained PCH. No functionality change. by Sebastian Redl · 14 years ago
  76. 80db8cb Makes RecursiveASTVisitor traverse the type of a temporary object by Zhanyong Wan · 14 years ago
  77. 24bae92 When performing substitution of template arguments within the body of by Douglas Gregor · 14 years ago
  78. 8871a44 Introduce PCHReader::GetTranslationUnitDecl() and use it instead of ReadDeclRecord when initializing. by Argyrios Kyrtzidis · 14 years ago
  79. bfcc92c Support TemplateTemplateParmDecl for PCH. by Argyrios Kyrtzidis · 14 years ago
  80. 6d82ef4 Bowing to popular demand, reduce the "comma at end of enumerator list" by Douglas Gregor · 14 years ago
  81. be19110 For TagType and TemplateSpecializationType, isDependent calculation may be invalid because some decls that the by Argyrios Kyrtzidis · 14 years ago
  82. 663e380 Read/write the C++ parts of DeclRefExpr and MemberExpr for PCH. by Argyrios Kyrtzidis · 14 years ago
  83. 82f8e79 Fix reading of UsingDecl from PCH. by Argyrios Kyrtzidis · 14 years ago
  84. 9705752 Remove unused protected constructor of DeclRefExpr. by Argyrios Kyrtzidis · 14 years ago
  85. fbc9421 Wrap the new ext-warn on extraneous comma on the last entry of an enumerator by Chandler Carruth · 14 years ago
  86. 7d5c45e Add support for differentiating between attributes ignored when handled and by Chandler Carruth · 14 years ago
  87. ed8abf1 Reinstate the fix for PR7556. A silly use of isTrivial() was by Douglas Gregor · 14 years ago
  88. 8474567 Revert r107828 and r107827, the fix for PR7556, which seems to be by Douglas Gregor · 14 years ago
  89. 016a4a9 Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its by Douglas Gregor · 14 years ago
  90. 63ef464 Do not use CXXZeroValueInitExpr for class types. Instead, use by Douglas Gregor · 14 years ago
  91. 717cc00 Changes how the TypeLoc traverser invokes the Type traverser: before, by Zhanyong Wan · 14 years ago
  92. 38e317d add driver support for minix, patch by Kees van Reeuwijk from PR7583 by Chris Lattner · 14 years ago
  93. bb80a8e Delay passing InterestingDecls to the Consumer until when we know we are not in recursive loading and the by Argyrios Kyrtzidis · 14 years ago
  94. 5f1bfc1 Remove Decl::getCompoundBody(). by Argyrios Kyrtzidis · 14 years ago
  95. 06a54a3 Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of getBody() when we are just checking the existence of a body, to avoid de-serialization of the body from PCH. by Argyrios Kyrtzidis · 14 years ago
  96. 8b5dec3 implement PR7569, warning about assignment to null, which by Chris Lattner · 14 years ago
  97. c34c211 Avoid double-traversing for QualifiedTypeLoc -- we were calling by Craig Silverstein · 14 years ago
  98. 744016d Provide a hook for the benefit of clients using clang IR gen as a subroutine: by John McCall · 14 years ago
  99. dd5faf0 Add a const version of a method, to be consistent with other methods by Craig Silverstein · 14 years ago
  100. fa87d81 Implement dumpToStream() for NonStaticGlobalSpaceRegion and StaticGlobalSpaceRegion. by Ted Kremenek · 14 years ago