1. c00cb64 Fix mangling for static member variables of classes inside an extern "C" by Eli Friedman · 14 years ago
  2. 8a6c0f1 When instantiating function definitions set parameter names to those used in template by Peter Collingbourne · 14 years ago
  3. db4325b Improve the representation of the atomic builtins in a few ways. First, we make by Chandler Carruth · 14 years ago
  4. 9638eef BUILD_ARCHIVE is the default for libraries, no need to set it. by Chris Lattner · 14 years ago
  5. f0ca0ee Fix crash initializing a bit-field with a non-constant in a place where we by Eli Friedman · 14 years ago
  6. 8d43808 Check for casts to an incomplete type in C. Improves diagnostics for cast to by Eli Friedman · 14 years ago
  7. ac0021b Added PCH/ASTImporter code for ObjCIvarDecl's field. by Fariborz Jahanian · 14 years ago
  8. 920bf45 Add another terrible VC++ compatibility hack: allow users to by Chris Lattner · 14 years ago
  9. ee30965 Revert r108617, it broke the build. by Benjamin Kramer · 14 years ago
  10. 69b8194 Prepare the analyzer for the callee in another translation unit: by Zhongxing Xu · 14 years ago
  11. cb07788 Fix '<rdar://problem/8202272> __imag passed non-complex should not crash' by removing a bogus assertion. by Ted Kremenek · 14 years ago
  12. ad51e74 Patch to synthesize property ivars on demand as by Fariborz Jahanian · 14 years ago
  13. 8262b6a The GNU-runtime ObjC personality function doesn't let us rethrow with URR for by John McCall · 14 years ago
  14. 4532931 Fix APFloat assertion failure in IdempotentOperationChecker resulting in having by Ted Kremenek · 14 years ago
  15. fbd4bf1 Teach the PCH reader to load the dependency when encountering a chain metadata record. WIP by Sebastian Redl · 14 years ago
  16. 0ea4dfd When checking whether to bind an expression to a temporary, don't bind Obj-C message send expressions who call methods that return references. by Anders Carlsson · 14 years ago
  17. cdf3b83 Separate out the initial loading of a PCH so that loading chained PCHs can reuse it. by Sebastian Redl · 14 years ago
  18. 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
  19. b7c2101 Hook up warning for an incomplete scanlist in scanf format strings. by Ted Kremenek · 14 years ago
  20. 9137a52 First baby steps towards PCHReader being able to keep track of multiple PCH files. WIP by Sebastian Redl · 14 years ago
  21. f9f97a0 When performing template name lookup for a dependent member access by Douglas Gregor · 14 years ago
  22. 1476ed4 Add a little more data to chained PCHs. WIP by Sebastian Redl · 14 years ago
  23. a0ebd60 Revert Microsoft-specific override of the "typedef requires a name" by Douglas Gregor · 14 years ago
  24. 0c99ec6 Suppress the "typedef requires a name" warning in Microsoft-extensions mode by Douglas Gregor · 14 years ago
  25. c9068d7 Treat template parameters as part of the declaration-specifiers for the by John McCall · 14 years ago
  26. ddc6ff6 Sema: Fix a bug with #pragma options align=reset, reset against an empty stack by Daniel Dunbar · 14 years ago
  27. b21fc4a Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. by Chandler Carruth · 14 years ago
  28. d9c904d Add the main scanf-parsing logic that I meant to include in my previous commit. by Ted Kremenek · 14 years ago
  29. d20b24c Add missing header file. by Ted Kremenek · 14 years ago
  30. 826a345 Add most of the boilerplate support for scanf format string checking. This includes by Ted Kremenek · 14 years ago
  31. bee05c1 Add builtin definition for scanf, including extending the builtin encoding to by Ted Kremenek · 14 years ago
  32. 6d7cfd7 Fix for PR3800: make sure not to evaluate the expression for a read-write by Eli Friedman · 14 years ago
  33. 754b9fb IRgen: Support user defined attributes on block runtime functions. by Daniel Dunbar · 14 years ago
  34. 673431a IRgen: Move blocks runtime interfaces to CodeGenModule. by Daniel Dunbar · 14 years ago
  35. c76c9e0 Suppress !+Asserts warning. by Daniel Dunbar · 14 years ago
  36. bf40cb5 When deferring the emission of declarations with initializers in C++, remember by John McCall · 14 years ago
  37. 15a3d7d Set "optimization is ON" and supply other optional parameters. This helps codegenerator preserve info in case the symbol is deleted. by Devang Patel · 14 years ago
  38. 7feaeee Don't suppress the emission of available_externally functions marked by Douglas Gregor · 14 years ago
  39. 4089491 Mark implementation generated methods as artificial. by Devang Patel · 14 years ago
  40. 1658c39 After some discussion, the ABI list settled on a much more sensible mangling by John McCall · 14 years ago
  41. 06b7080 When we're performing tentative parsing to determine whether the by Douglas Gregor · 14 years ago
  42. 7c7a793 Reinstate the scalar-cast-to-const-reference improvements, this time by Douglas Gregor · 14 years ago
  43. 35e12c9 Make the "unused result" warning a warning about run-time behavior, so by Douglas Gregor · 14 years ago
  44. 928d69f Revert r108431 and r108433 (the cast-to-const-reference fixes), which by Douglas Gregor · 14 years ago
  45. db30c0f Revert 108220 and subsequent patch. by Devang Patel · 14 years ago
  46. 06de037 Spell isPRValue() properly. by Douglas Gregor · 14 years ago
  47. 5467209 Teach CodeGenFunction::EmitCastLValue() to handle casts to an lvalue by Douglas Gregor · 14 years ago
  48. 2497886 CK_BitCast is not an lvalue bitcast any longer by Douglas Gregor · 14 years ago
  49. 2bb38d0 Driver/Darwin: Resolve deployment target defaulting to be more predictable; by Daniel Dunbar · 14 years ago
  50. 3852f34 CodeGen: Tweak ABI handling for Minix, patch by Kees van Reeuwijk! by Daniel Dunbar · 14 years ago
  51. 23ef3e4 restrict the && -> & warning to cover a case daniel noted. by Chris Lattner · 14 years ago
  52. 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
  53. dacf9dd CodeGen/ObjC/NeXT: Fix Obj-C message send to match llvm-gcc when choosing by Daniel Dunbar · 14 years ago
  54. cb481aa There is another implementation of PCHReaderListener around. Update it to the new interface. by Sebastian Redl · 14 years ago
  55. 66a8c9a When determining whether an overload set with explicit template by Douglas Gregor · 14 years ago
  56. ec1b1cc Pass StringRefs by value. by Benjamin Kramer · 14 years ago
  57. 0167f3c When there are extra or missing template parameter lists in a template by Douglas Gregor · 14 years ago
  58. 77d439a Add lvalue-bitcast support for complex numbers. by Douglas Gregor · 14 years ago
  59. 07a353c Increase the max PCH level for declarations to 7. Add a FromPCH flag to types. by Sebastian Redl · 14 years ago
  60. b9a8226 Driver: When re'execing clang, use path to the main executable instead of by Daniel Dunbar · 14 years ago
  61. 4a7e889 Driver: Remove some unused arguments. by Daniel Dunbar · 14 years ago
  62. d3635b9 Don't error when doing default property synthesis by Fariborz Jahanian · 14 years ago
  63. 7e9ad8b Make PCHReader cope with PCH files containing more than one predefines buffer. by Sebastian Redl · 14 years ago
  64. 797efb5 Only filter out names reserved for the implementation (e.g., __blah or by Douglas Gregor · 14 years ago
  65. 9ccd725 Consider obective-c pointer arguments as valid sentinel args by Fariborz Jahanian · 14 years ago
  66. b6f532e Fix the mangling of template template arguments, which do not always by John McCall · 14 years ago
  67. f1adcdd Remove a few mangling FIXMEs: by John McCall · 14 years ago
  68. 0512e48 Implement the standard mangling for array-subscript expressions, and implement by John McCall · 14 years ago
  69. 47e879d Driver/Darwin: Pass -pie/-no_pie to the linker when -fpie/-fno-pie and friends by Daniel Dunbar · 14 years ago
  70. 3e29f96 Work around an obnoxious GCC warning by changing semantics in a hopefully- by John McCall · 14 years ago
  71. e39a389 Introduce a new cast kind for an "lvalue bitcast", which handles by Douglas Gregor · 14 years ago
  72. fcd5c0c Switch the __cxa_rethrow cleanup to be lazy. by John McCall · 14 years ago
  73. 8e3f861 Allow for the possibility that __cxa_end_catch might throw for a catch-all block by John McCall · 14 years ago
  74. ae415dc Check on property attributes which are declared by Fariborz Jahanian · 14 years ago
  75. 09faeab Switch the __cxa_free_exception cleanup to be lazy. by John McCall · 14 years ago
  76. 55a17c0 Set DeclContext of ParamVarDecl only. No need by Fariborz Jahanian · 14 years ago
  77. da65ea8 Teach IR generation how to lazily emit cleanups. This has a lot of advantages, by John McCall · 14 years ago
  78. e7ffbe2 More block instantiation stuff. Set variable/param DeclContext by Fariborz Jahanian · 14 years ago
  79. 90a8f27 Add a warning to catch a bug recently caught by code review, like this: by Chris Lattner · 14 years ago
  80. 3d4b482 80 column issues. by Chris Lattner · 14 years ago
  81. 6398235 Whenever we're creating an expression that is typically an rvalue by Douglas Gregor · 14 years ago
  82. 6dc1ef8 Silence Doug's favorite GCC warning. by Chandler Carruth · 14 years ago
  83. 2ecebc2 Add volatile qualifiers for "this". by Devang Patel · 14 years ago
  84. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 14 years ago
  85. 9b36c3f Modify the pragma handlers to accept and use StringRefs instead of IdentifierInfos. by Argyrios Kyrtzidis · 14 years ago
  86. de80ec1 Improve diagnostics for the "type qualifier on return type has no by Douglas Gregor · 14 years ago
  87. 218f47f When computing the canonical profile of a DeclRefExpr or MemberExpr, by Douglas Gregor · 14 years ago
  88. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  89. aef0199 Diagnose typedef of an operator name. Fixes PR7462 by Douglas Gregor · 14 years ago
  90. a131d0f Complain when an unnamed enumeration has no enumerations (in C++). Fixes PR7466. by Douglas Gregor · 14 years ago
  91. 44eac33 Reinstate the optimization suppressing available_externally functions by Douglas Gregor · 14 years ago
  92. 769640e const qualify debug info for "this" for const methods. by Devang Patel · 14 years ago
  93. 8dd0c56 Instantiate attributes when first building an instantiated VarDecl. by Fariborz Jahanian · 14 years ago
  94. 669eed8 Provide a special diagnostic for attempts to explicitly specialize by Douglas Gregor · 14 years ago
  95. dd41ed5 Fix a documentation paste-o and eliminate a useless function parameter, both found by Sebastian by Douglas Gregor · 14 years ago
  96. f9ea1f3 Produce an error on encountering a pointer or reference to a qualified function type. Fixes PR7470. by Sebastian Redl · 14 years ago
  97. a5c5bab While collecting members for a class, always create delcaration entry for methods. Debug info for method definition will be generated while generating code for method body. by Devang Patel · 14 years ago
  98. 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
  99. 8951bfd Remove the check for repeated tok::eofs, we are not supposed to go past eof so this code is by Argyrios Kyrtzidis · 14 years ago
  100. 0a67edd Simplify code using the new FoldingSetImpl::InsertNode() overload. by Argyrios Kyrtzidis · 14 years ago