1. c00cb64 Fix mangling for static member variables of classes inside an extern "C" by Eli Friedman · 14 years ago
  2. ea9799c daniel doesn't hate me, he hates macpython 2.5, which by Chris Lattner · 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. f0ca0ee Fix crash initializing a bit-field with a non-constant in a place where we by Eli Friedman · 14 years ago
  5. 8d43808 Check for casts to an incomplete type in C. Improves diagnostics for cast to by Eli Friedman · 14 years ago
  6. 920bf45 Add another terrible VC++ compatibility hack: allow users to by Chris Lattner · 14 years ago
  7. 3e88dcf rename test by Chris Lattner · 14 years ago
  8. 9d80f73 rename test by Chris Lattner · 14 years ago
  9. cb07788 Fix '<rdar://problem/8202272> __imag passed non-complex should not crash' by removing a bogus assertion. by Ted Kremenek · 14 years ago
  10. af6c314 Another test case for on demand synthesis of ivars. by Fariborz Jahanian · 14 years ago
  11. ad51e74 Patch to synthesize property ivars on demand as by Fariborz Jahanian · 14 years ago
  12. 8262b6a The GNU-runtime ObjC personality function doesn't let us rethrow with URR for by John McCall · 14 years ago
  13. 4532931 Fix APFloat assertion failure in IdempotentOperationChecker resulting in having by Ted Kremenek · 14 years ago
  14. 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
  15. bb09d1e Remove unicode quotes characters that somehow made it into a recent commit of mine. by Ted Kremenek · 14 years ago
  16. 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
  17. b7c2101 Hook up warning for an incomplete scanlist in scanf format strings. by Ted Kremenek · 14 years ago
  18. 32d0900 Tweak zero-field width in scanf format string diagnostic. by Ted Kremenek · 14 years ago
  19. f9f97a0 When performing template name lookup for a dependent member access by Douglas Gregor · 14 years ago
  20. a0ebd60 Revert Microsoft-specific override of the "typedef requires a name" by Douglas Gregor · 14 years ago
  21. 0c99ec6 Suppress the "typedef requires a name" warning in Microsoft-extensions mode 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. ddc6ff6 Sema: Fix a bug with #pragma options align=reset, reset against an empty stack by Daniel Dunbar · 14 years ago
  25. b21fc4a Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. by Chandler Carruth · 14 years ago
  26. 1e4c33a Add initial test cases for scanf format string checking. by Ted Kremenek · 14 years ago
  27. 6d7cfd7 Fix for PR3800: make sure not to evaluate the expression for a read-write by Eli Friedman · 14 years ago
  28. 1058253 Builtins/ARM: __clear_cache doesn't seem to have a consistent prototype, declare by Daniel Dunbar · 14 years ago
  29. 754b9fb IRgen: Support user defined attributes on block runtime functions. by Daniel Dunbar · 14 years ago
  30. bf40cb5 When deferring the emission of declarations with initializers in C++, remember by John McCall · 14 years ago
  31. 1ce377a Improve test case. Thanks Eli by Douglas Gregor · 14 years ago
  32. 7feaeee Don't suppress the emission of available_externally functions marked by Douglas Gregor · 14 years ago
  33. 06b7080 When we're performing tentative parsing to determine whether the by Douglas Gregor · 14 years ago
  34. 7c7a793 Reinstate the scalar-cast-to-const-reference improvements, this time by Douglas Gregor · 14 years ago
  35. 35e12c9 Make the "unused result" warning a warning about run-time behavior, so by Douglas Gregor · 14 years ago
  36. 928d69f Revert r108431 and r108433 (the cast-to-const-reference fixes), which by Douglas Gregor · 14 years ago
  37. f801dcf Add test case for PR5290; this bug was fixed with the non-class rvalue by Douglas Gregor · 14 years ago
  38. db30c0f Revert 108220 and subsequent patch. by Devang Patel · 14 years ago
  39. 5467209 Teach CodeGenFunction::EmitCastLValue() to handle casts to an lvalue by Douglas Gregor · 14 years ago
  40. 2bb38d0 Driver/Darwin: Resolve deployment target defaulting to be more predictable; by Daniel Dunbar · 14 years ago
  41. f0fb0e0 see comment. by Chris Lattner · 14 years ago
  42. 23ef3e4 restrict the && -> & warning to cover a case daniel noted. by Chris Lattner · 14 years ago
  43. 66a8c9a When determining whether an overload set with explicit template by Douglas Gregor · 14 years ago
  44. 0167f3c When there are extra or missing template parameter lists in a template by Douglas Gregor · 14 years ago
  45. 77d439a Add lvalue-bitcast support for complex numbers. by Douglas Gregor · 14 years ago
  46. d3635b9 Don't error when doing default property synthesis by Fariborz Jahanian · 14 years ago
  47. 7e9ad8b Make PCHReader cope with PCH files containing more than one predefines buffer. by Sebastian Redl · 14 years ago
  48. 797efb5 Only filter out names reserved for the implementation (e.g., __blah or by Douglas Gregor · 14 years ago
  49. 9ccd725 Consider obective-c pointer arguments as valid sentinel args by Fariborz Jahanian · 14 years ago
  50. b6f532e Fix the mangling of template template arguments, which do not always by John McCall · 14 years ago
  51. 5495f37 Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'. by Chandler Carruth · 14 years ago
  52. 773eb03 Add test case that was causing an infinite loop when reading PCH files. The test works with ToT Clang already by Douglas Gregor · 14 years ago
  53. 47e879d Driver/Darwin: Pass -pie/-no_pie to the linker when -fpie/-fno-pie and friends by Daniel Dunbar · 14 years ago
  54. bc25f19 Add missing testcases for lvalue bitcasts by Douglas Gregor · 14 years ago
  55. 8e3f861 Allow for the possibility that __cxa_end_catch might throw for a catch-all block by John McCall · 14 years ago
  56. ae415dc Check on property attributes which are declared by Fariborz Jahanian · 14 years ago
  57. 09faeab Switch the __cxa_free_exception cleanup to be lazy. by John McCall · 14 years ago
  58. da65ea8 Teach IR generation how to lazily emit cleanups. This has a lot of advantages, by John McCall · 14 years ago
  59. e7ffbe2 More block instantiation stuff. Set variable/param DeclContext by Fariborz Jahanian · 14 years ago
  60. 90a8f27 Add a warning to catch a bug recently caught by code review, like this: by Chris Lattner · 14 years ago
  61. 6398235 Whenever we're creating an expression that is typically an rvalue by Douglas Gregor · 14 years ago
  62. 2ecebc2 Add volatile qualifiers for "this". by Devang Patel · 14 years ago
  63. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 14 years ago
  64. de80ec1 Improve diagnostics for the "type qualifier on return type has no by Douglas Gregor · 14 years ago
  65. 218f47f When computing the canonical profile of a DeclRefExpr or MemberExpr, by Douglas Gregor · 14 years ago
  66. 5291c3c When forming a function call or message send expression, be sure to by Douglas Gregor · 14 years ago
  67. aef0199 Diagnose typedef of an operator name. Fixes PR7462 by Douglas Gregor · 14 years ago
  68. ecda6fb Check in this -Wconversion C++ test case that's been sitting on my machine by John McCall · 14 years ago
  69. a131d0f Complain when an unnamed enumeration has no enumerations (in C++). Fixes PR7466. by Douglas Gregor · 14 years ago
  70. 44eac33 Reinstate the optimization suppressing available_externally functions by Douglas Gregor · 14 years ago
  71. 669eed8 Provide a special diagnostic for attempts to explicitly specialize by Douglas Gregor · 14 years ago
  72. f9ea1f3 Produce an error on encountering a pointer or reference to a qualified function type. Fixes PR7470. by Sebastian Redl · 14 years ago
  73. 27cc633 Speculatively revert r108156; it appears to be breaking self-host. by Douglas Gregor · 14 years ago
  74. cfd41cf Add test case for <rdar://problem/8177927> (which triggered an assertion failure in SemaChecking). by Ted Kremenek · 14 years ago
  75. 7ce1f27 Do not generate LLVM IR for available_externally function bodies at by Douglas Gregor · 14 years ago
  76. 64d092c Fix another aspect of PR7047, macro expansions. Previously, this was hacked by Chandler Carruth · 14 years ago
  77. 63dae6e we do in fact have to cache the EOF token returned by the preprocessor. by Chris Lattner · 14 years ago
  78. 9fc1873 revert a hunk of code that Argiris added in r106213, which is the by Chris Lattner · 14 years ago
  79. 184aa4e fix PR7280 by making the warning on code like this: by Chris Lattner · 14 years ago
  80. 9b3215d change the 'invalid token after top level declarator' message to be by Chris Lattner · 14 years ago
  81. 004659a Fix PR7617 by not entering ParseFunctionDefinition when by Chris Lattner · 14 years ago
  82. 9991947 Lay the ground work for resoving PR7047. This doesn't actually fix it because by Chandler Carruth · 14 years ago
  83. 833f42e BlockDeclRefExpr of a dependent type must by Fariborz Jahanian · 14 years ago
  84. 5750b81 Instantiation of byref variable in block literal expression. by Fariborz Jahanian · 14 years ago
  85. c61bb20 Slightly improve the diagnostic when using a qualified function typedef to declare nonmember or static member functions. by Sebastian Redl · 14 years ago
  86. d201457 Fix PR7600, and correctly convert the result of an atomic builtin to the by Chandler Carruth · 14 years ago
  87. a729da2 Instantiation of block literal expressions. wip. by Fariborz Jahanian · 14 years ago
  88. 27f46ee Refer to implicit "conversions" rather than implicit "casts", which by Douglas Gregor · 14 years ago
  89. a0068fc Introduce -f{no-}spell-checking options to enable/disable by Douglas Gregor · 14 years ago
  90. d325ffb Cleanup in CStringChecker. Now properly bifurcates the state for zero/nonzero sizes. by Jordy Rose · 14 years ago
  91. 40ed9a1 Support code completion for parameter names in Objective-C method declarations. by Douglas Gregor · 14 years ago
  92. 1f5537a Introduce a new code-completion point prior to an identifier in the by Douglas Gregor · 14 years ago
  93. cddc69f When looking for an entity's Scope, don't consider scopes that can't contain declarations. Fixes PR7594. by Sebastian Redl · 14 years ago
  94. 590c7d5 During code completion, give the "nil" and "NULL" macros the same by Douglas Gregor · 14 years ago
  95. bf9fb88 Allow C-style casts and reinterpret_casts between block pointers and by Douglas Gregor · 14 years ago
  96. 24bae92 When performing substitution of template arguments within the body of by Douglas Gregor · 14 years ago
  97. 6d82ef4 Bowing to popular demand, reduce the "comma at end of enumerator list" by Douglas Gregor · 14 years ago
  98. 39dbad9 Apparently the {{$}} hack doesn't work on Windows; I am saddened but not by John McCall · 14 years ago
  99. 7d5c45e Add support for differentiating between attributes ignored when handled and by Chandler Carruth · 14 years ago
  100. 9c0c1f3 Mark calls to 'throw()' functions as nounwind, and mark the functions nounwind by John McCall · 14 years ago