1. d871509 Switch some random local-decl cleanups over to using lazy cleanups. Turn on by John McCall · 14 years ago
  2. 50da2ca Implement proper base/member destructor EH chaining. by John McCall · 14 years ago
  3. 182ab51 Convert the EH cleanups for base and member destructors in a constructor into by John McCall · 14 years ago
  4. 59174c0 Implement zero-initialization for array new when there is an by Douglas Gregor · 14 years ago
  5. 204b075 Fix the IR generation for catching pointers by references. by John McCall · 14 years ago
  6. 806941e in 'new int[4]', constant fold the 4*4=16 instead of doing an overflow check. by Chris Lattner · 14 years ago
  7. c11787f don't demand names to be on IR. by Chris Lattner · 14 years ago
  8. 962312b temporarily disable this to fix the build bot. by Chris Lattner · 14 years ago
  9. 83252dc Follow the implementation approach suggested by PR6687, by Chris Lattner · 14 years ago
  10. 700a1cb Print template argument names for template class. by Devang Patel · 14 years ago
  11. 6c552c1 implement rdar://5739832 - operator new should check for overflow in multiply, by Chris Lattner · 14 years ago
  12. f033f1d Introduce a new lexer function to compute the "preamble" of a file, by Douglas Gregor · 14 years ago
  13. 1e51c20 Hookup checking for invalid length modifiers in scanf format strings. by Ted Kremenek · 14 years ago
  14. 35eee09 Re-apply fixed version of 108749, correctly conditionalizing the new sections on by Jim Grosbach · 14 years ago
  15. 427c492 Complain when string literals are too long for the active language by Douglas Gregor · 14 years ago
  16. cc0b1bc Hide the specializations folding sets of ClassTemplateDecl as an implementation detail (InsertPos by Argyrios Kyrtzidis · 14 years ago
  17. 0b42659 Fix test for Win32. by Daniel Dunbar · 14 years ago
  18. 38d2479 and revert the related tests, too by Jim Grosbach · 14 years ago
  19. a8f8dac Patch to type match comparing Objective-C Classes which implement by Fariborz Jahanian · 14 years ago
  20. baa4006 Don't warn when a '%%' or '%*d' (scanf) is used in a format string with positional arguments, since by Ted Kremenek · 14 years ago
  21. abc563f Introduce a new libclang API, clang_reparseTranslationUnit(), which by Douglas Gregor · 14 years ago
  22. a7765a6 Update tests for r108749 by Jim Grosbach · 14 years ago
  23. c09b6a5 Hook up 'invalid conversion' warning for scanf format strings. by Ted Kremenek · 14 years ago
  24. be86ecc Add missing conversion specifier parsing for 'u', 'x', 'o', and 's'. Fixes <rdar://problem/8204052>. by Ted Kremenek · 14 years ago
  25. 5314e44 Driver: Make -fnext-runtime the default when rewriting Objective-C. by Daniel Dunbar · 14 years ago
  26. 6c57322 IRgen: Add a test case I forgot to commit at some point. by Daniel Dunbar · 14 years ago
  27. 60baf0f Driver/Darwin: Add deployment target after doing argument translation, so that by Daniel Dunbar · 14 years ago
  28. 84ef4b2 Categories cannot synthesize property ivars, and a minor cleanup. by Fariborz Jahanian · 14 years ago
  29. 8a1af32 Implement support for reading arguments specified in a file with @file. If by Rafael Espindola · 14 years ago
  30. 2b02f7a Adjust test for float printing differences. Windows uses three digits for the exponent, everyone else two. by Benjamin Kramer · 14 years ago
  31. e3041be Fix http://llvm.org/PR7660 by Argyrios Kyrtzidis · 14 years ago
  32. 6658874 Revert r108672, "Implement support for reading arguments specified in a file by Daniel Dunbar · 14 years ago
  33. 1c2ab11 Implement support for reading arguments specified in a file with @file. by Rafael Espindola · 14 years ago
  34. c6a36ff fix test case. by Zhongxing Xu · 14 years ago
  35. 9843ba9 Add double close check to StreamChecker. Patch by Lei Zhang. by Zhongxing Xu · 14 years ago
  36. 8d13d22 Fix a goof in my previous patch -- not all of the builtins return a value, some by Chandler Carruth · 14 years ago
  37. c00cb64 Fix mangling for static member variables of classes inside an extern "C" by Eli Friedman · 14 years ago
  38. ea9799c daniel doesn't hate me, he hates macpython 2.5, which by Chris Lattner · 14 years ago
  39. db4325b Improve the representation of the atomic builtins in a few ways. First, we make by Chandler Carruth · 14 years ago
  40. f0ca0ee Fix crash initializing a bit-field with a non-constant in a place where we by Eli Friedman · 14 years ago
  41. 8d43808 Check for casts to an incomplete type in C. Improves diagnostics for cast to by Eli Friedman · 14 years ago
  42. 920bf45 Add another terrible VC++ compatibility hack: allow users to by Chris Lattner · 14 years ago
  43. 3e88dcf rename test by Chris Lattner · 14 years ago
  44. 9d80f73 rename test by Chris Lattner · 14 years ago
  45. cb07788 Fix '<rdar://problem/8202272> __imag passed non-complex should not crash' by removing a bogus assertion. by Ted Kremenek · 14 years ago
  46. af6c314 Another test case for on demand synthesis of ivars. by Fariborz Jahanian · 14 years ago
  47. ad51e74 Patch to synthesize property ivars on demand as by Fariborz Jahanian · 14 years ago
  48. 8262b6a The GNU-runtime ObjC personality function doesn't let us rethrow with URR for by John McCall · 14 years ago
  49. 4532931 Fix APFloat assertion failure in IdempotentOperationChecker resulting in having by Ted Kremenek · 14 years ago
  50. 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
  51. bb09d1e Remove unicode quotes characters that somehow made it into a recent commit of mine. by Ted Kremenek · 14 years ago
  52. 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
  53. b7c2101 Hook up warning for an incomplete scanlist in scanf format strings. by Ted Kremenek · 14 years ago
  54. 32d0900 Tweak zero-field width in scanf format string diagnostic. by Ted Kremenek · 14 years ago
  55. f9f97a0 When performing template name lookup for a dependent member access by Douglas Gregor · 14 years ago
  56. a0ebd60 Revert Microsoft-specific override of the "typedef requires a name" by Douglas Gregor · 14 years ago
  57. 0c99ec6 Suppress the "typedef requires a name" warning in Microsoft-extensions mode by Douglas Gregor · 14 years ago
  58. c9068d7 Treat template parameters as part of the declaration-specifiers for the by John McCall · 14 years ago
  59. 34fa294 Make this grossness default to the error it should always be. by Chandler Carruth · 14 years ago
  60. ddc6ff6 Sema: Fix a bug with #pragma options align=reset, reset against an empty stack by Daniel Dunbar · 14 years ago
  61. b21fc4a Butcher a perfectly reasonable diagnostic to pacify old versions of SWIG. by Chandler Carruth · 14 years ago
  62. 1e4c33a Add initial test cases for scanf format string checking. by Ted Kremenek · 14 years ago
  63. 6d7cfd7 Fix for PR3800: make sure not to evaluate the expression for a read-write by Eli Friedman · 14 years ago
  64. 1058253 Builtins/ARM: __clear_cache doesn't seem to have a consistent prototype, declare by Daniel Dunbar · 14 years ago
  65. 754b9fb IRgen: Support user defined attributes on block runtime functions. by Daniel Dunbar · 14 years ago
  66. bf40cb5 When deferring the emission of declarations with initializers in C++, remember by John McCall · 14 years ago
  67. 1ce377a Improve test case. Thanks Eli by Douglas Gregor · 14 years ago
  68. 7feaeee Don't suppress the emission of available_externally functions marked by Douglas Gregor · 14 years ago
  69. 06b7080 When we're performing tentative parsing to determine whether the by Douglas Gregor · 14 years ago
  70. 7c7a793 Reinstate the scalar-cast-to-const-reference improvements, this time by Douglas Gregor · 14 years ago
  71. 35e12c9 Make the "unused result" warning a warning about run-time behavior, so by Douglas Gregor · 14 years ago
  72. 928d69f Revert r108431 and r108433 (the cast-to-const-reference fixes), which by Douglas Gregor · 14 years ago
  73. f801dcf Add test case for PR5290; this bug was fixed with the non-class rvalue by Douglas Gregor · 14 years ago
  74. db30c0f Revert 108220 and subsequent patch. by Devang Patel · 14 years ago
  75. 5467209 Teach CodeGenFunction::EmitCastLValue() to handle casts to an lvalue by Douglas Gregor · 14 years ago
  76. 2bb38d0 Driver/Darwin: Resolve deployment target defaulting to be more predictable; by Daniel Dunbar · 14 years ago
  77. f0fb0e0 see comment. by Chris Lattner · 14 years ago
  78. 23ef3e4 restrict the && -> & warning to cover a case daniel noted. by Chris Lattner · 14 years ago
  79. 66a8c9a When determining whether an overload set with explicit template by Douglas Gregor · 14 years ago
  80. 0167f3c When there are extra or missing template parameter lists in a template by Douglas Gregor · 14 years ago
  81. 77d439a Add lvalue-bitcast support for complex numbers. by Douglas Gregor · 14 years ago
  82. d3635b9 Don't error when doing default property synthesis by Fariborz Jahanian · 14 years ago
  83. 7e9ad8b Make PCHReader cope with PCH files containing more than one predefines buffer. by Sebastian Redl · 14 years ago
  84. 797efb5 Only filter out names reserved for the implementation (e.g., __blah or by Douglas Gregor · 14 years ago
  85. 9ccd725 Consider obective-c pointer arguments as valid sentinel args by Fariborz Jahanian · 14 years ago
  86. b6f532e Fix the mangling of template template arguments, which do not always by John McCall · 14 years ago
  87. 5495f37 Wire up '-Wignored-qualifiers' to the warning on 'const' in 'const int f()'. by Chandler Carruth · 14 years ago
  88. 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
  89. 47e879d Driver/Darwin: Pass -pie/-no_pie to the linker when -fpie/-fno-pie and friends by Daniel Dunbar · 14 years ago
  90. bc25f19 Add missing testcases for lvalue bitcasts by Douglas Gregor · 14 years ago
  91. 8e3f861 Allow for the possibility that __cxa_end_catch might throw for a catch-all block by John McCall · 14 years ago
  92. ae415dc Check on property attributes which are declared by Fariborz Jahanian · 14 years ago
  93. 09faeab Switch the __cxa_free_exception cleanup to be lazy. by John McCall · 14 years ago
  94. da65ea8 Teach IR generation how to lazily emit cleanups. This has a lot of advantages, by John McCall · 14 years ago
  95. e7ffbe2 More block instantiation stuff. Set variable/param DeclContext by Fariborz Jahanian · 14 years ago
  96. 90a8f27 Add a warning to catch a bug recently caught by code review, like this: by Chris Lattner · 14 years ago
  97. 6398235 Whenever we're creating an expression that is typically an rvalue by Douglas Gregor · 14 years ago
  98. 2ecebc2 Add volatile qualifiers for "this". by Devang Patel · 14 years ago
  99. 4bd4031 Downgrade the "when type is in parentheses, array cannot have dynamic by Douglas Gregor · 14 years ago
  100. de80ec1 Improve diagnostics for the "type qualifier on return type has no by Douglas Gregor · 14 years ago