1. 07a5c22 Disable all recognition of main() in -ffreestanding. Addresses bug #4720. by John McCall · 15 years ago
  2. 2cff7d1 Change handling of attribute 'malloc' to only accept the attribute on function by Ted Kremenek · 15 years ago
  3. 2733b66 Add more attribute 'malloc' test cases involving function pointers. by Ted Kremenek · 15 years ago
  4. b109069 Per Eli Friedman's feedback, handle attribute 'malloc' being applied to by Ted Kremenek · 15 years ago
  5. a5e42a8 objc2's foreach statement's selector type can be a block pointer too. by Fariborz Jahanian · 15 years ago
  6. 2c2b06e This test case does not need to include 'stdlib.h'. by Ted Kremenek · 15 years ago
  7. a18d7d8 Improve Sema's handling of attribute 'malloc' to reject the attribute when by Ted Kremenek · 15 years ago
  8. 343a3cf ir-gen for generation of trvial copy constructor call. by Fariborz Jahanian · 15 years ago
  9. b11d798 Fixed a regression in deciding when to issue warning on properties which by Fariborz Jahanian · 15 years ago
  10. b1d76bd PR4715 by Shantonu Sen · 15 years ago
  11. fd810b1 Support friend declarations in templates and test that argdep lookup by John McCall · 15 years ago
  12. 9297423 Testcase for a recent checkin. by Mike Stump · 15 years ago
  13. bff10c5 Testcase for recent checkin. by Mike Stump · 15 years ago
  14. 12de461 Testcase for a recent checkin. by Mike Stump · 15 years ago
  15. 183d718 Fixed a bug in ir-gen for copy assignment synthesis. by Fariborz Jahanian · 15 years ago
  16. 7884678 Add testcase for recent work. by Mike Stump · 15 years ago
  17. 4ef9809 Refine vtable layout for virtual bases and keep better track of primaries. WIP. by Mike Stump · 15 years ago
  18. eea0a5c Adds testing of copy assignment of anonymous union data members. by Fariborz Jahanian · 15 years ago
  19. 6dee5d8 More complete test for my previous patch. by Fariborz Jahanian · 15 years ago
  20. ad25883 Patch to force synthesis of copy assignment operator by Fariborz Jahanian · 15 years ago
  21. 8d5053c Update test by Daniel Dunbar · 15 years ago
  22. 94d0bce Refine virtual base layout. WIP. by Mike Stump · 15 years ago
  23. d76264e Refine primary vbase selection ordering. WIP. by Mike Stump · 15 years ago
  24. 34fae9c Improve the secondary vtables to not include vbase offsets. WIP. by Mike Stump · 15 years ago
  25. acf2d13 error on property of objc interface type instead of crashing by Fariborz Jahanian · 15 years ago
  26. 6cc670e Warn on use of property dot syntax when unused. by Fariborz Jahanian · 15 years ago
  27. 664f893 Use the inbounds variant of getelementptr for common pointer arithmetic. by Dan Gohman · 15 years ago
  28. 73e10b0 Rename macro to avoid a name clash on FreeBSD. by Benjamin Kramer · 15 years ago
  29. 0fd8904 Patch to warn if a property which is 'assign' by default by Fariborz Jahanian · 15 years ago
  30. bab8a8e merge two tests. by Chris Lattner · 15 years ago
  31. ab0e887 Fix rdar://7126285: don't warn on unused ObjC property access by Chris Lattner · 15 years ago
  32. e649412 ir-gen support for anonymous union data member by Fariborz Jahanian · 15 years ago
  33. b2fedb4 Update test case. by Daniel Dunbar · 15 years ago
  34. 3f9a8a6 Argument-dependent lookup for friend declarations. Add a new decl type, by John McCall · 15 years ago
  35. 4952094 Implement more of the inductive case for vtable layout involving by Mike Stump · 15 years ago
  36. 2ef13e5 Take 2 on AltiVec-style vector initializers. by Nate Begeman · 15 years ago
  37. 797c3c4 fix a couple of problems with section attributes: by Chris Lattner · 15 years ago
  38. 2e0110e these tests include section specifiers that aren't valid on the by Chris Lattner · 15 years ago
  39. f05fe65 ir-gen for generating copying of scalar data members in by Fariborz Jahanian · 15 years ago
  40. 370c884 Fixed a ir-gen bug in synthesizing copy constructors. by Fariborz Jahanian · 15 years ago
  41. 1df5109 Revert r78535, it is causing a number of failures to build projects. by Daniel Dunbar · 15 years ago
  42. fd6ad3c warn, as gcc does, if __attribute__((malloc)) applied to function returning non-pointer type by Ryan Flynn · 15 years ago
  43. 76168e2 map previously ignored __attribute((malloc)) to noalias attribute of llvm function's return by Ryan Flynn · 15 years ago
  44. 237957c Improve handling of member pointers. by Anders Carlsson · 15 years ago
  45. 25b4fdb AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); by Nate Begeman · 15 years ago
  46. 942f4f3 ir-gen for initialization, in synthesize copy constructor, by Fariborz Jahanian · 15 years ago
  47. 89ed31d Add support for global initializers. by Anders Carlsson · 15 years ago
  48. 3b2e16b Refactor some code and implement support for global destructors for static variables. by Anders Carlsson · 15 years ago
  49. 8249576 Use CastExpr::CK_ArrayToPointerDecay and fix an assert. by Anders Carlsson · 15 years ago
  50. 87b5fa9 Add tests. by Anders Carlsson · 15 years ago
  51. 8045c73 PR4700 - remove shift by 0 warning by Ryan Flynn · 15 years ago
  52. fb7ef75 getFunctionLevelDeclContext needs to get the previous DeclContext if EnterDeclaratorContext has been called. Fixes PR4694. (Doug, please review) by Anders Carlsson · 15 years ago
  53. 0f44b5a Make sure to diagnose use of declarations in the case where we create an implicit CXXThisExpr. by Anders Carlsson · 15 years ago
  54. 2aa9444 Update test case; I don't really understand why packed enums changed this, but by Daniel Dunbar · 15 years ago
  55. 57cf2f3 Add vbase offsets to the vtable. Wow, having an rbegin was so fortuitous. WIP. by Mike Stump · 15 years ago
  56. 35ffcf3 Fix: <rdar://problem/7075531> static analyzer wrongly detects unused ivars used in blocks by Ted Kremenek · 15 years ago
  57. 928f150 Add ability to generate vcall offsets for primary virtual base. by Mike Stump · 15 years ago
  58. d043968 PR3333: warn when shifting by invalid amount by Ryan Flynn · 15 years ago
  59. 02cf1e2 Add support for vcall generation for vtables for virtual bases. WIP. by Mike Stump · 15 years ago
  60. 566a6fa Fix a few more false positives involving RegionStore and unions, but this time by Ted Kremenek · 15 years ago
  61. dac64a5 Almost forgot to turn on 32-bit test. by Mike Stump · 15 years ago
  62. 636548d Testcase for recent checkin. by Mike Stump · 15 years ago
  63. e1be2b1 Also generate the rtti field for virtual bases for vtables. Turn on by Mike Stump · 15 years ago
  64. d4e5a60 Fix a couple false positive "uninitialized value" warnings with RegionStore by Ted Kremenek · 15 years ago
  65. 7f27d92 Permit a class to friend its members in C++0x, without restriction. by John McCall · 15 years ago
  66. 70101ce Layout the primary base first in the vtable. by Mike Stump · 15 years ago
  67. 52ab92b After reporting ill-formed copy constructor(12.8.p3) don't recurs and crash. by Fariborz Jahanian · 15 years ago
  68. 4a959d8 When we encounter a dependent type that was parsed before we know that by Douglas Gregor · 15 years ago
  69. 8a12b56 More layout for virtual tables for virtual bases. Still in progress. by Mike Stump · 15 years ago
  70. 37148f4 Let's remember we want better codegen for these. by Mike Stump · 15 years ago
  71. c5708d9 Testcase for a recent checkin for vbase layout ordering. I hate to by Mike Stump · 15 years ago
  72. eb19fa9 Layout virtual bases. Work in progress. by Mike Stump · 15 years ago
  73. d1067e5 Implement transformation of template names within the generic tree by Douglas Gregor · 15 years ago
  74. addc931 Update test case. by Ted Kremenek · 15 years ago
  75. fe85ced Support nested-name-specifiers for C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
  76. 4403a5e add support for FreeBSD's format(printf0,x,y) attribute; allows null format string. by Ryan Flynn · 15 years ago
  77. 67d1a67 First pass at friend semantics. by John McCall · 15 years ago
  78. 6904cbb Patch to optimize away copy constructor call when appropriate. by Fariborz Jahanian · 15 years ago
  79. 213a60e AlisdairM pointed out that this will likely be relaxed in C++0x, so let's by John McCall · 15 years ago
  80. 2effeca Fixup object layout when we have a primary base (it goes first). Start preping for by Mike Stump · 15 years ago
  81. e947278 Add a test for invalid uses of non-static members from nested classes, just by John McCall · 15 years ago
  82. 26899b0 Add another test for a recent checkin. by Mike Stump · 15 years ago
  83. 6f37633 Calculate the primary base class better and use that when laying down by Mike Stump · 15 years ago
  84. aed2b3e A blank line to separate the two blocks(per Mike comment). by Fariborz Jahanian · 15 years ago
  85. b5bc3d6 Modified test case to use FileCheck. by Fariborz Jahanian · 15 years ago
  86. 47259d9 Fix canonical type construction for function types with the noreturn by Douglas Gregor · 15 years ago
  87. caa499b Handle destruction of temporaries used in default argument by Fariborz Jahanian · 15 years ago
  88. b2c352e Patch to improve ir-gen for constructors with default argument by Fariborz Jahanian · 15 years ago
  89. 4ed4598 Fix a bug in RegionStoreSubRegionManager::add() where multiple subregions wouldn't correctly get registered in the SubRegion map. by Ted Kremenek · 15 years ago
  90. e78b86f weak globals that are const should get weak_odr linkage. by Chris Lattner · 15 years ago
  91. 309457d rdar://7119244 - globals with an explicit section specified don't get by Chris Lattner · 15 years ago
  92. bfc8168 Add test case. by Zhongxing Xu · 15 years ago
  93. 104ffaa vtable building for simple inheritance. Still in progress. by Mike Stump · 15 years ago
  94. 06758d0 Test cases for some recent work. by Mike Stump · 15 years ago
  95. fca9361 Revert the fix for PR3800, it broke things. by Anders Carlsson · 15 years ago
  96. e198f5d Some code refactoring. Be more generous in issuance of warning by Fariborz Jahanian · 15 years ago
  97. 7cfd891 Fix test case for Darwin10 (which sets ssp), and move to CodeGen/ by Daniel Dunbar · 15 years ago
  98. dbdec8b Compare matching selectors in current and by Fariborz Jahanian · 15 years ago
  99. 8eec7c0 Adjust test case. by Ted Kremenek · 15 years ago
  100. 7a02a37 Per advice that Doug Gregor gave me several months ago, clean up the by Ted Kremenek · 15 years ago