1. 077f490 More coherent diagnostic attempting to assign to a member of a const object returned by Fariborz Jahanian · 14 years ago
  2. dc0a2da For Diagnostic::Reset() also reset the state related to #pragma diagnostic. Fixes rdar://9170766. by Argyrios Kyrtzidis · 14 years ago
  3. 3b3e1a9 fix the second part of rdar://8366474 - clang fails to parse ObjC selectors with '::', when :: isn't the first part of the selector. by Chris Lattner · 14 years ago
  4. 3d9ce90 Make diagnostic clearer. by Fariborz Jahanian · 14 years ago
  5. 65b427f Don't add a symbolic region for 'this' if the member function is static. by Anders Carlsson · 14 years ago
  6. dceb531 Add a __has_feature check for the 'availability' attribute by Douglas Gregor · 14 years ago
  7. 4421d2b On Mac OS X, the presence of an 'availability' attribute for that by Douglas Gregor · 14 years ago
  8. 6cc425e Test attribute merging for the availability attribute. by Douglas Gregor · 14 years ago
  9. b53e417 Extend the new 'availability' attribute with support for an by Douglas Gregor · 14 years ago
  10. 2234873 Allow GC qualifiers to be added/removed by conversions from/to void* by John McCall · 14 years ago
  11. 379246d Don't warn about the 'extern' in 'extern "C"' on a tag decl. This is by John McCall · 14 years ago
  12. 7da19ea Fix the recovery from missing semis on @property declarations to not consume by John McCall · 14 years ago
  13. 7ea2193 Properly move attributes to the decl spec when applying them there. by John McCall · 14 years ago
  14. af19ac4 Obj-C/NeXT: Update and reapply 108847, now that changes are more baked. by Daniel Dunbar · 14 years ago
  15. 59f9046 Driver/Darwin: Dsymutil actions should put the dSYM adjacent to the output file. by Daniel Dunbar · 14 years ago
  16. c8b9f79 we can now claim to fully support the override control feature in C++0x. by Anders Carlsson · 14 years ago
  17. b184a18 Replace the call to ParseOptionalCXX0XClassVirtSpecifierSeq with code to only parse an optional 'final' keyword. by Anders Carlsson · 14 years ago
  18. 2c3ee54 Get rid of handling of the 'explicit' keyword from class-head. We still parse it though, although that will change shortly. by Anders Carlsson · 14 years ago
  19. 844c25d Remove warnings about using override control keywords in inline function definitions; they will be allowed in the next C++0x draft. by Anders Carlsson · 14 years ago
  20. b1f3968 Remove 'new' from virt-specifier since it's going to be removed in the next C++0x draft by Anders Carlsson · 14 years ago
  21. 909a70d Apply the nonnull attribute to constructor expressions too. by Nick Lewycky · 14 years ago
  22. 8d8420e Fixed some of the incompatibilities with gcc. by John Thompson · 14 years ago
  23. 1d2de76 Minor fix in the injection of labels, since we want to look at the redeclaration context of each declaration in the identifier chain. Should fix Linux self-host by Douglas Gregor · 14 years ago
  24. fa7b8ce Fix the insertion of label declarations into the identifier chain in by Douglas Gregor · 14 years ago
  25. c285372 Make sure we aggressively attach nounwind (etc.) to calls to library by Eli Friedman · 14 years ago
  26. 2b32dad Add a new warning for exit-time destructors. by Anders Carlsson · 14 years ago
  27. 5188507 Rework checker "packages" and groups to be more hierarchical. by Ted Kremenek · 14 years ago
  28. c7ef462 Fixed type error in last commit (forgot that now that selectors are not by David Chisnall · 14 years ago
  29. a8d459e Fix CFG-construction bug when run from AnalysisBasedWarnings::IssueWarnings() where block-level expressions that need by Ted Kremenek · 14 years ago
  30. bec7343 Unbreak test by Douglas Gregor · 14 years ago
  31. d97f558 Support for Transparent unions used as overloadable by Fariborz Jahanian · 14 years ago
  32. 31798a6 Add a test for !ptr-to-member (should fail) by Marshall Clow · 14 years ago
  33. def8631 Ignore weak_import on Objective-C property and method declarations on by Douglas Gregor · 14 years ago
  34. 0a0d2b1 Implement a new 'availability' attribute, that allows one to specify by Douglas Gregor · 14 years ago
  35. 4f38f41 Fix an error with the declaration of block parameters that depend by John McCall · 14 years ago
  36. ac4df24 Warn about unused declaration-specifiers on tag declarations. by John McCall · 14 years ago
  37. 3c66d30 Frontend: Add a more explicit -backend-option flag for passing backend command by Daniel Dunbar · 14 years ago
  38. 850d3b3 Apply Jonathan Sauer's proposed solution to PR9519. Thanks! by John McCall · 14 years ago
  39. e81ac69 The emission of an Objective-C++'s class .cxx_destruct method should be by John McCall · 14 years ago
  40. 7895194 Fix a test case and teach ClearLinkageCache() to clear the linkage of by John McCall · 14 years ago
  41. 74990f4 File-scope static functions need to be mangled with 'L' so that by John McCall · 14 years ago
  42. 90e2320 Output to tempfile by Matt Beaumont-Gay · 14 years ago
  43. 84950c7 Fix an objc++ diagnostic initializing objc pointers. // rdar:// 9139947 by Fariborz Jahanian · 14 years ago
  44. 148f1f7 Only objects are declared const by a constexpr specifier, per C++0x [dcl.constexpr]p9 by Peter Collingbourne · 14 years ago
  45. eedd467 Downgrade err_mismatched_exception_spec to a ExtWarning in Microsoft mode. MSVC doesn't do any validation on exception specifications. by Francois Pichet · 14 years ago
  46. e5da3e6 makes vec_step operator work when AltiVec support is enabled by Anton Yartsev · 14 years ago
  47. 207f4d8 Add support for language-specific address spaces. On top of that, by Peter Collingbourne · 14 years ago
  48. 2ed4228 Lexer: Add extremely limited support for -traditional-cpp, ignoring BCPL by Daniel Dunbar · 14 years ago
  49. 5ce872f Driver/Darwin: Transparently fallback when compiling i386 -fapple-kext code, we by Daniel Dunbar · 14 years ago
  50. d6a49bb Add an opt-in -Wheader-hygiene, which current diagnoses the use of by Douglas Gregor · 14 years ago
  51. a9d1293 test/CodeGenCXX/apple-kext-guard-variable.cpp: May I appease non-darwin hosts? by NAKAMURA Takumi · 14 years ago
  52. b8bcce3 test/Driver/sysroot-flags.c: Tweak for Mingw MSYS bash. by NAKAMURA Takumi · 14 years ago
  53. 70dbdf7 test/Driver/darwin-cc.c: FileCheck-ize and tweak for Mingw MSYS bash. by NAKAMURA Takumi · 14 years ago
  54. 3209669 The Darwin kernel does not provide useful guard variable support. by John McCall · 14 years ago
  55. d47ea69 Driver/Obj-C: Be compatible with GCC behavior in that -fno-exceptions *does not* by Daniel Dunbar · 14 years ago
  56. 0133917 Driver/Darwin: These are command line options, not target features. by Daniel Dunbar · 14 years ago
  57. fa41d69 Driver/Darwin/ARM: Kernel/kext code has more strict alignment requirements. by Daniel Dunbar · 14 years ago
  58. a085da8 Fix PR9488: 'auto' type substitution can fail (for instance, if it creates a reference-to-void type). Don't crash if it does. by Richard Smith · 14 years ago
  59. 53b24eb Fix test to test the right thing. by Ted Kremenek · 14 years ago
  60. c5e43c1 Don't construct two CFGs just to run -Wuninitialized. While this causes new warnings to be flagged under -Wconditional-uninitialized, this is something we by Ted Kremenek · 14 years ago
  61. c9dcb45 Make test more portable. by Ted Kremenek · 14 years ago
  62. f3f9293 Teach VariadicMethodTypeChecker about pointers attributed as 'NSObject'. by Ted Kremenek · 14 years ago
  63. 928c415 Teach VariadicMethodTypeChecker that CF references are valid arguments to variadic Objective-C methods. by Ted Kremenek · 14 years ago
  64. 6137441 Tweak RegionStore's handling of lazy compound values to use the 'Default' versus 'Direct' binding key, thus allowing specific elements of an array/struct to be overwritten without by Ted Kremenek · 14 years ago
  65. 1cbc315 Extend -Wuninitialized to support vector types. by Ted Kremenek · 14 years ago
  66. 0a65f94 Rename -Wuninitialized-maybe to -Wconditional-uninitialized. by Ted Kremenek · 14 years ago
  67. 7187fac Driver/ARM: Match GCC behavior in that -msoft-float disables NEON, despite this by Daniel Dunbar · 14 years ago
  68. 04a9eb3 When libclang visits a translation unit via clang_visitChildren(), by Douglas Gregor · 14 years ago
  69. 545aa7a PR9494: Get rid of bitcast which was both unnecessary and written incorrectly. by Eli Friedman · 14 years ago
  70. 0daaf32 Use ElaboratedType also for C. by Abramo Bagnara · 14 years ago
  71. eef7ac5 Detect attempts to provide a specialization of a function within a by Douglas Gregor · 14 years ago
  72. db2eae6 Clean up our handling of template-ids that resolve down to a single by Douglas Gregor · 14 years ago
  73. 60b3e38 Don't indescriminately print overload candidates when we have invalid by Douglas Gregor · 14 years ago
  74. eed5ddc Allow function calls to dereferenced member pointers of by Douglas Gregor · 14 years ago
  75. c9977d0 Make sure that we always pop a function's scope *before* we call by Douglas Gregor · 14 years ago
  76. 250e7a7 When we're inserting a synthesized label declaration for a by Douglas Gregor · 14 years ago
  77. 4d85942 test/Driver/hello.c: Tweak for cygming. by NAKAMURA Takumi · 14 years ago
  78. 432c478 Teach CFGBuilder that the 'default' branch of a switch statement is dead if all enum values in a switch conditioned are handled. by Ted Kremenek · 14 years ago
  79. a5bcb8f Don't emit read barriers for reading __weak __block variables in non-GC mode. by John McCall · 14 years ago
  80. d5fde21 VariadicMethodTypeChecker: don't warn for null pointer constants passed to variadic Objective-C methods. by Ted Kremenek · 14 years ago
  81. 37c2e96 c-index-test shouldn't crash when a goto has no matching label. Fixes <rdar://problem/9123493>. by Ted Kremenek · 14 years ago
  82. db9e9e6 Remove warning for null characters in CFString literals. Clang handles them just fine, and GCC 4.2 doesn't warn here either. by Ted Kremenek · 14 years ago
  83. 8bba1f4 Reorganize the emission of (unfoldable) constant casts a bit, and by John McCall · 14 years ago
  84. 4561ecd Create __has_feature(cxx_noexcept) and mark it as working. by Sebastian Redl · 14 years ago
  85. 71fff64 Fix test case. by Sebastian Redl · 14 years ago
  86. 0eab51c Extend the noexcept expression test to test noexcept specification functions. by Sebastian Redl · 14 years ago
  87. d8f2e8e More robust check for the special C++0x operator new workaround. by Sebastian Redl · 14 years ago
  88. 99439d4 Implement a hack to work around the changing exception specification of operator new in C++0x. by Sebastian Redl · 14 years ago
  89. cf995d3 Remove bogus assertion in IdempotentOperationsChecker. by Ted Kremenek · 14 years ago
  90. a968e97 Reintroduce r127617: "Code generation for noexcept." with fixes. by Sebastian Redl · 14 years ago
  91. 4eb7f69 Don't poke into redefined 'id' type looking for a property by Fariborz Jahanian · 14 years ago
  92. 908c09f Take 2: merge -Wuninitialized-experimental into -Wuninitialized. Only *must-be-uninitialized* warnings are reported, with *maybe-uninitialized* under a separate flag. I await any fallout/comments/feedback, although hopefully this will produce no noise for users. by Ted Kremenek · 14 years ago
  93. f7bafc7 Split warnings from -Wuninitialized-experimental into "must-be-initialized" and "may-be-initialized" warnings, each controlled by different flags. by Ted Kremenek · 14 years ago
  94. f3f5379 Remove old UninitializedValues analysis. by Ted Kremenek · 14 years ago
  95. 112d5ee Revert r127617: "Code generation for noexcept." by Jakob Stoklund Olesen · 14 years ago
  96. 18d8b79 Disable 'auto' type deduction in Objective-C. It likes 'id' a bit too by Douglas Gregor · 14 years ago
  97. 7cbc558 When synthesizing a label declaration based on a goto statement that by Douglas Gregor · 14 years ago
  98. dc0f137 Switch from internal to linker_private linkage, it is sufficient to please the new linker. by Rafael Espindola · 14 years ago
  99. f86d5f2 Code generation for noexcept. by Sebastian Redl · 14 years ago
  100. 8a37c79 __clear_cache() is varargs and people will occasionally write it without by Eric Christopher · 14 years ago