1. 92b9bd9 PR5863: Don't erase unreachable BBs which have an associated cleanup size. by Benjamin Kramer · 14 years ago
  2. a481ec4 It turns out that people love using VLAs in templates, too. Weaken our by Douglas Gregor · 14 years ago
  3. 9ba6af8 Complain about sizeof(overloaded function) rather than crashing. by Douglas Gregor · 14 years ago
  4. bfcdc40 When recording empty subobjects we should always look at the primary virtual base. by Anders Carlsson · 14 years ago
  5. db4da82 Put the VLA-is-an-extension warning into its own warning group (-Wvla) by Douglas Gregor · 14 years ago
  6. 715e9c8 Even though we don't unique VLA types, we still need to build a by Douglas Gregor · 14 years ago
  7. a40a9f3 Really fix PR7139. There was one boost test that we still failed, and my first fix broke self-host. by Anders Carlsson · 14 years ago
  8. 1884eb0 Re-land the fix for PR7139. by Anders Carlsson · 14 years ago
  9. fb2db46 Don't look for a destructor in a dependent type. Fixes PR7198. by Douglas Gregor · 14 years ago
  10. d900831 When determining whether we can use "this", make sure to look through by Douglas Gregor · 14 years ago
  11. 0fddb97 Implement support for variable length arrays in C++. VLAs are limited by Douglas Gregor · 14 years ago
  12. 2d6b0e9 Improve our handling of reference binding for subobjects of by Douglas Gregor · 14 years ago
  13. c304ba3 Daniel re-educated me about what Alias does and does not do. Turn that off for by Chandler Carruth · 14 years ago
  14. d5ab9b0 Improve recovery when we see a dependent template name that is missing by Douglas Gregor · 14 years ago
  15. 561da7e Clang missing warning about conflicting declaration vs. definition by Fariborz Jahanian · 14 years ago
  16. 1fd6d44 Improve parser recovery when we encounter a dependent template name by Douglas Gregor · 14 years ago
  17. 892fa6c Unbreak self-host. by Anders Carlsson · 14 years ago
  18. d775c66 Update retain-release checker to understand changes to how 'super' is represented by Ted Kremenek · 14 years ago
  19. db9b12e Rename CodeGenFunction::EmitMemSetToZero to EmitNullInitialization. Handle setting null data member pointers correctly. Fixes PR7139. by Anders Carlsson · 14 years ago
  20. b212d9a When instantiating a function declaration within a function template, by Douglas Gregor · 14 years ago
  21. aec0371 Propagate access specifiers to anonymous union members nested within classes. by John McCall · 14 years ago
  22. 3f64a0e Fix crash in CFG construction for 'break' statements appearing in statement expressions by Ted Kremenek · 14 years ago
  23. e0d5fe2 Use CanQualType to enforce the use of a canonical type argument to by Douglas Gregor · 14 years ago
  24. 663218b When generating the call arguments in a thunk to call the thunkee, do by Douglas Gregor · 14 years ago
  25. b4eae11 Changed test to use FileCheck. by Fariborz Jahanian · 14 years ago
  26. ee50429 Allocate space in a block record for implicit references to the Objective C by John McCall · 14 years ago
  27. a9976d3 When emitting an lvalue for an anonymous struct or union member during by John McCall · 14 years ago
  28. 9901c57 When instantiating anonymous structs/unions within a function, make by Douglas Gregor · 14 years ago
  29. fe2d379 Fix a crasher in constructor-initializer reordering warnings (PR7179). by Douglas Gregor · 14 years ago
  30. 0ed5c5d Generate objc_memmove_collectable write-barrier for by Fariborz Jahanian · 14 years ago
  31. ac0f5e5 Don't warn about use of hex floats in c++ mode by default, by Chris Lattner · 14 years ago
  32. f1860e5 Be sure to apply initializers to members of anonymous structs and unions by John McCall · 14 years ago
  33. 4186ff4 Improve parser recovery when a switch condition is invalid; fixes by Douglas Gregor · 14 years ago
  34. 842ddd0 Adds support for generation of objc_memmove_collectable API by Fariborz Jahanian · 14 years ago
  35. d2235f6 Reinstate r104117, Chandler Carruth's change that "[provides] a naming by Douglas Gregor · 14 years ago
  36. 27b7aa0 More Objective-C++ GC tests. by Fariborz Jahanian · 14 years ago
  37. 60dcb84 Rework our handling of binding a reference to a temporary by Douglas Gregor · 14 years ago
  38. cb359df When creating a this-adjustment thunk where the return value is of C++ by Douglas Gregor · 14 years ago
  39. 4e58c25 Remove accidental commit by Douglas Gregor · 14 years ago
  40. 68dd3ee Various small fixes for construction/destruction of Objective-C++ by Douglas Gregor · 14 years ago
  41. ea1471e Support implicitly closing on 'this' in a block. Fixed PR7165. by John McCall · 14 years ago
  42. b65a458 When a conditional operator is an rvalue of class type, we need to by Douglas Gregor · 14 years ago
  43. a5da902 More tests for ObjC++ GC support. by Fariborz Jahanian · 14 years ago
  44. 2390a72 Adds support for ObjC++'s GC attribute on declaration of by Fariborz Jahanian · 14 years ago
  45. bf1cbaf Revert r104117, "Provide a naming class for UnresolvedLookupExprs, even when by Daniel Dunbar · 14 years ago
  46. 857e918 Add clang support for IBOutletCollection. by Ted Kremenek · 14 years ago
  47. 4469e8a Revert r104106; it's breaking linking of Boost.Serialization. by Douglas Gregor · 14 years ago
  48. 6349ce9 Implement codegen for __builtin_isnormal. by Benjamin Kramer · 14 years ago
  49. c3f984f Provide a naming class for UnresolvedLookupExprs, even when occuring on by Chandler Carruth · 14 years ago
  50. a89064a Profile type-dependent uses of overloaded operators in C++ the same by Douglas Gregor · 14 years ago
  51. 7d2bcc7 Teach clang to instantiate attributes on more declarations. Fixes PR7102. by Douglas Gregor · 14 years ago
  52. 26bcf67 Implement C++ builtin operator candidates for vector types. by Douglas Gregor · 14 years ago
  53. a115855 Basic test for user-defined conversions involving vector types by Douglas Gregor · 14 years ago
  54. 62ac5d0 Misc. fixes to bring Objetive-C++'s handling of by Fariborz Jahanian · 14 years ago
  55. ac06a0e Protect isIntegerConstantExpr from seeing type- or value-dependent by Douglas Gregor · 14 years ago
  56. fb4a543 Implement C++ support for vector and extended vector types. This by Douglas Gregor · 14 years ago
  57. 23173d7 Teach CursorVisitor about duplicate ObjCPropertyDecls that can arise because of a current by Ted Kremenek · 14 years ago
  58. bf1ee34 These test now run in objective-c++ mode we well. by Fariborz Jahanian · 14 years ago
  59. d1808f3 Add missing test case, provided by Steven Watanabe. by Douglas Gregor · 14 years ago
  60. a1d1c75 Fix typo test case by Douglas Gregor · 14 years ago
  61. f813a2c Add support for Microsoft's __thiscall, from Steven Watanabe! by Douglas Gregor · 14 years ago
  62. a83fb4b Correctly initialize bases with member pointers. This should fix PR6441 but that test case is a bit weird and I'd like to investigate further before closing that bug. by Anders Carlsson · 14 years ago
  63. d0785ea Give a slight edge to the context-sensitive keyword 'super' over by Douglas Gregor · 14 years ago
  64. 91f7ac7 Tweak typo-correction logic a bit regarding "super", so that we by Douglas Gregor · 14 years ago
  65. d425d2b Permit Objective C object pointers to be const_casted. by John McCall · 14 years ago
  66. 238058c I hate this commit. by Douglas Gregor · 14 years ago
  67. 0fb9708 If a switch condition is constant, don't warn about missing enum cases. by John McCall · 14 years ago
  68. 532ec7b Teach the ObjC mangler to ignore member pointers just like gcc does. by John McCall · 14 years ago
  69. 00e9cbb Add a hack to silence warnings about failing to return from functions after by Chandler Carruth · 14 years ago
  70. a6b0907 Instantiate attributes on typedefs. This is a quick fix for PR7148, by Douglas Gregor · 14 years ago
  71. e2aaf39 Clean up test case and remove XFAIL. This test can now distinguish between by Ted Kremenek · 14 years ago
  72. 3d48899 robustify the conflict marker stuff. Don't add 7 twice, which would by Chris Lattner · 14 years ago
  73. 3031c63 Correctly generate IR for ObjC messages sends to protocol-qualified types. by John McCall · 14 years ago
  74. 293279a Test that mutability of class members that involve class definitions actually works by Douglas Gregor · 14 years ago
  75. 9dadd94 Teach ASTContext::getUnqualifiedArrayType() how to look through by Douglas Gregor · 14 years ago
  76. 33f9924 mutable is a storage class that can follow a class/struct/union definition. Fixes PR7153 by Douglas Gregor · 14 years ago
  77. 9614dc0 Don't attempt to poke into an invalid field's class type by Fariborz Jahanian · 14 years ago
  78. cfe833b Diagnose a redefinition error when there are two instantiations of friend by Douglas Gregor · 14 years ago
  79. 6cfacfe Determine when the instantiation of a friend function defined inside a by Douglas Gregor · 14 years ago
  80. 5ea6861 C++/Darwin/i386 ABI: Fix some problems with empty record handling. by Daniel Dunbar · 14 years ago
  81. ac7c2c8 C++98/03 [temp.friend]p4 requires that inline function definitions by Douglas Gregor · 14 years ago
  82. 3d91bbc Ensure that destructors are called for NRVO'd objects when the by Douglas Gregor · 14 years ago
  83. 9a0fcfe PR7117: Make sure we don't lose the calling convention for K&R-style by Eli Friedman · 14 years ago
  84. 150fcd5 when code completing inside a C-style block comment, don't emit errors about by Chris Lattner · 14 years ago
  85. 55cbd6e Correctly diagnose array 'new' with initialization arguments when the new type is a typedef to an array type. by Anders Carlsson · 14 years ago
  86. 3caf04e When the type-id or new-type-id of a C++ "new" expression is a typedef by Douglas Gregor · 14 years ago
  87. 761c94e When constant folding reference variables with an initializer to the by Chandler Carruth · 14 years ago
  88. 4bb3bf9 really use valist. by Chris Lattner · 14 years ago
  89. 4037833 fix rdar://7985267 - Don't emit an error about a non-pod argument by Chris Lattner · 14 years ago
  90. 86a3a03 When initializing thread-safe statics, put the call to by Douglas Gregor · 14 years ago
  91. 1eb2e59 Revert r103880 (thread-safe static initialization w/ exceptions), by Douglas Gregor · 14 years ago
  92. 0ca0b1f Fix API gen for objc_msgSend property of aggregate types by Fariborz Jahanian · 14 years ago
  93. bfcc823 When initializing thread-safe statics, put the call to by Douglas Gregor · 14 years ago
  94. 72bf425 Attempt to satisfy Release-Asserts build by Douglas Gregor · 14 years ago
  95. 986f349 sigh by Chris Lattner · 14 years ago
  96. eb94155 fix _mm_shuffle_pd too, thanks to Joel Falcou for pointing this out. by Chris Lattner · 14 years ago
  97. b5b30b9 When applying the named return value optimization, we still need to by Douglas Gregor · 14 years ago
  98. c12c5bb Substantially alter the design of the Objective C type AST by introducing by John McCall · 14 years ago
  99. d86c477 Implement a simple form of the C++ named return value optimization for by Douglas Gregor · 14 years ago
  100. 67d438d C++/ABI/x86_64: Member pointers should be classified as INTEGER. by Daniel Dunbar · 14 years ago