1. 8e26222 Fix newlines. by Daniel Dunbar · 14 years ago
  2. 7a051b2 tests: Force a triple. by Daniel Dunbar · 14 years ago
  3. dbee341 Add support for explicit constructor calls in Microsoft mode. For example: by Francois Pichet · 14 years ago
  4. 4dccb90 Correctly enable test/Sema/unit-variables.c, by Ted Kremenek · 14 years ago
  5. c104e53 Teach UninitializedValuesV2 about "int x = x" and by Ted Kremenek · 14 years ago
  6. d3d4e1e More unnamed_addr. by Rafael Espindola · 14 years ago
  7. 803d307 merge strings created by const NSConstantString *appKey = @"MyApp"; by Rafael Espindola · 14 years ago
  8. 22c4120 Handle base and member destructors in CheckFallThrough. by Anders Carlsson · 14 years ago
  9. b918d0f Convert "#pragma unused(...)" into tokens for the parser. by Argyrios Kyrtzidis · 14 years ago
  10. b266a1f Add unnamed_addr to the special strings created by by Rafael Espindola · 14 years ago
  11. b971dbd Change ParseOptionalCXX0XVirtSpecifierSeq to take a VirtSpecifiers struct. by Anders Carlsson · 14 years ago
  12. 5be38be Remove a c++ file test I inadvertently added in Sema last week. by Francois Pichet · 14 years ago
  13. 1f3b6fd Begin work on supporting "N3206: Override control: Eliminating Attributes", from by Anders Carlsson · 14 years ago
  14. 0dc5f9a Fix a bug where the -Wmissing-noreturn would always treat constructors with base or member initializers as noreturn. by Anders Carlsson · 14 years ago
  15. 2d75bbd Emit an extension diagnostic for C99 designated initializers that appear in C++ code by Douglas Gregor · 14 years ago
  16. 9da95e6 Tweak the partial ordering rules for function templates to prefer a by Douglas Gregor · 14 years ago
  17. cd3ac4b Also set unnamed_addr on declarations. by Rafael Espindola · 14 years ago
  18. 1aee05d Introduce a new kind of TemplateName that captures a substituted by Douglas Gregor · 14 years ago
  19. 610068c Add initial prototype for implementation of by Ted Kremenek · 14 years ago
  20. c7793c7 Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, by Douglas Gregor · 14 years ago
  21. 2be29f4 Teach template template argument pack expansions to keep track of the by Douglas Gregor · 14 years ago
  22. 6a24bfd Handle substitutions into function parameter packs whose patterns by Douglas Gregor · 14 years ago
  23. 02fff57 Fixed by r123477. by Owen Anderson · 14 years ago
  24. 67fd125 Teach PackExpansionExpr to keep track of the number of pack expansions by Douglas Gregor · 14 years ago
  25. 3efd52c Properly propagate #pragma diagnostic mappings from PCH but not command-line warning flags. by Argyrios Kyrtzidis · 14 years ago
  26. d4f482a Teach RegionStore::EnterStackFrame() to handle by Ted Kremenek · 14 years ago
  27. 07a77b4 When we're instantiating a direct variable initializer that has a pack by Douglas Gregor · 14 years ago
  28. cded4f6 Keep track of the number of expansions to be produced from a type pack by Douglas Gregor · 14 years ago
  29. 161e40c temporarily xfail, this was broken by r123418 by Chris Lattner · 14 years ago
  30. c3069d6 Start implementing support for substitution into pack expansions that by Douglas Gregor · 14 years ago
  31. 56b1f71 Remove warning in dead stores checker for by Ted Kremenek · 14 years ago
  32. ec80512 Generate write-barriers for global objc assigns. // rdar://8761767 by Fariborz Jahanian · 14 years ago
  33. c421f54 Only apply the parameter pack matching of C++0x [temp.arg.template]p3 by Douglas Gregor · 14 years ago
  34. dce7397 Fix a test case by Douglas Gregor · 14 years ago
  35. 255c269 When your comments and your code are out-of-sync, the test case is wrong. by Douglas Gregor · 14 years ago
  36. 4fc4866 Add tests for name mangling of variadic templates. by Douglas Gregor · 14 years ago
  37. e17da65 CXXBaseObjectRegion is like FieldRegion. Need to blast through it when by Zhongxing Xu · 14 years ago
  38. d074441 Support inlining base initializers. We still haven't got it completely right, by Zhongxing Xu · 14 years ago
  39. 0932360 Fix a corner case in RegionStore where we assign by Ted Kremenek · 14 years ago
  40. 8d3d6c9 Ensure an insertion point at the end of a statement-expression. Fixes PR8967. by John McCall · 14 years ago
  41. 62b1607 Only add unnamed_addr to definitions. by Rafael Espindola · 14 years ago
  42. 4f1d282 Allow us to transform pack expansion expressions. by Douglas Gregor · 14 years ago
  43. a034782 Implement C++0x [temp.arg.template]p3, which allows slightly fuzzy by Douglas Gregor · 14 years ago
  44. 1d5d0b9 Add the location of the right parenthesis of a C++ named cast by Douglas Gregor · 14 years ago
  45. 9370c8f Add IR generation support for SizeOfPackExpr. by Douglas Gregor · 14 years ago
  46. ac6c099 Add some more partial-ordering tests, including one that changes with by Douglas Gregor · 14 years ago
  47. 12e8464 wint_t is defined as 'unsigned int' on Linux. Fixes PR8938. by Douglas Gregor · 14 years ago
  48. 2fc1bb7 Teach TreeTransform how to transform a pack expansion type into by Douglas Gregor · 14 years ago
  49. cd5b22e Fix a latent bug where, after emitting an expression statement, we would by John McCall · 14 years ago
  50. 57244f6 Set unnamed_addr in every type info. by Rafael Espindola · 14 years ago
  51. 82a0f4e Set unnamed_addr in VTTs. by Rafael Espindola · 14 years ago
  52. 77d6bb9 Implement partial ordering of class template partial specializations by Douglas Gregor · 14 years ago
  53. b1c65ff Set unnamed_addr for type infos that we are confortable marking as hidden. I by Rafael Espindola · 14 years ago
  54. 9f959db Add unnamed_addr to vtables. by Rafael Espindola · 14 years ago
  55. d7a31ba [analyzer] Introduce ObjCSelfInitChecker, which checks initialization methods to verify that they assign 'self' to the by Argyrios Kyrtzidis · 14 years ago
  56. 4e97586 Add another test for [temp.func.order]p5/[temp.deduct.partial]p11, by Douglas Gregor · 14 years ago
  57. 5c7bf42 Implement C++ [temp.func.order]p5 more directly, by passing down the by Douglas Gregor · 14 years ago
  58. 2e996d9 Add example from C++0x [temp.deduct.type]p21, which already works by Douglas Gregor · 14 years ago
  59. 2b57aef Added warning about invalid register specification for local variables. by Abramo Bagnara · 14 years ago
  60. a15a5ee In Microsoft mode, force 64 bit hex integer constants to signed type if the LL or i64 suffix is used. This MSVC behavior. by Francois Pichet · 14 years ago
  61. 27c54e5 Rework ExprEngine::processCFGBlockEntrance() by Ted Kremenek · 14 years ago
  62. 483dd2f Ensure that the result type of an Objective-C class message send is by Douglas Gregor · 14 years ago
  63. 21371ea When mapping from a function parameter pack to the set of function by Douglas Gregor · 14 years ago
  64. 7d5c0c1 Implement the last bullet of [temp.deduct.type]p5 and part of the last by Douglas Gregor · 14 years ago
  65. 4f3018e Make sure that we parse a '>>' that closes two template argument lists by Douglas Gregor · 14 years ago
  66. bc61bd8 When we're inside a functional cast, '>' is an operator. Fixes PR8912. by Douglas Gregor · 14 years ago
  67. 10ffc00 Add testing for unexpanded parameter packs in all of the C++ by Douglas Gregor · 14 years ago
  68. c5f657f Add unnamed_addr to constructors and destructors. by Rafael Espindola · 14 years ago
  69. 1257bc6 Add unnamed_addr when creating artificial string globals. For example, in by Rafael Espindola · 14 years ago
  70. 3cae5c9 Implement more of C++0x [temp.arg.explicit]p9, allowing extension of by Douglas Gregor · 14 years ago
  71. d373119 Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which by Douglas Gregor · 14 years ago
  72. f9d3cbb In C++, assignment and compound assignment operators return an lvalue. by Zhongxing Xu · 14 years ago
  73. eeef924 Remove a kludge from analysis based warnings that used to detect by Chandler Carruth · 14 years ago
  74. 65197b4 Add semantic checking that the "thousands grouping" by Ted Kremenek · 14 years ago
  75. bd18d45 Add printf format string parsing support for ' by Ted Kremenek · 14 years ago
  76. e8bbf98 Variadic templates example: a nearly-complete implementation of a TR1 by Douglas Gregor · 14 years ago
  77. 9ce5270 Fix crash in CFGBuilder on invalid code. We still need by Ted Kremenek · 14 years ago
  78. 03414b9 Variadic templates example: a nearly-complete implementation of a TR1 by Douglas Gregor · 14 years ago
  79. 5d918a4 Use -check-prefix to make it clear the test is SVR4/DARWINPPC specific. by Roman Divacky · 14 years ago
  80. 403bdd7 Drop the _darwin/_svr4 suffixes. by Roman Divacky · 14 years ago
  81. 12c9c00 Implement substitution of a function parameter pack for its set of by Douglas Gregor · 14 years ago
  82. b466d01 Add all options needed to support -fapple-kext. wip. by Fariborz Jahanian · 14 years ago
  83. a009b59 Factor out the template transformation of a sequence of function by Douglas Gregor · 14 years ago
  84. 666b3e9 Add target triple. by Devang Patel · 14 years ago
  85. f5c65ff Implement template argument deduction from a call to a function by Douglas Gregor · 14 years ago
  86. 150d2df test case for r122971. by Devang Patel · 14 years ago
  87. ebfde17 Put warning about makeing a string writable into by Fariborz Jahanian · 14 years ago
  88. 772cae5 Added testcase for commit r122963. by Abramo Bagnara · 14 years ago
  89. c81f2a2 PowerPC fixes. by Roman Divacky · 14 years ago
  90. 914c9a6 Tweak the wording of this warning further based on a suggestion from Chris. by Chandler Carruth · 14 years ago
  91. ba3ca52 fix rdar://8823139, a crash on a comment in a preprocessed .s file by Chris Lattner · 14 years ago
  92. 603cfb4 Initial implementation of function parameter packs. This implementation allows: by Douglas Gregor · 14 years ago
  93. 2b77cb8 Don't warn on missing 'copy' attribute on a 'block' by Fariborz Jahanian · 14 years ago
  94. d53e16a When we're converting deduced template arguments to the type of the by Douglas Gregor · 14 years ago
  95. a7fc901 Replace the representation of template template argument pack by Douglas Gregor · 14 years ago
  96. ba68eca Add semantic analysis for the creation of and an AST representation by Douglas Gregor · 14 years ago
  97. 1ed6476 Implement C++0x [temp.param]p11 for non-type and template template by Douglas Gregor · 14 years ago
  98. f457c1a Implement proper parameter pack matching for non-type template by Douglas Gregor · 14 years ago
  99. 61c4d28 Implement support for template template parameter packs, e.g., by Douglas Gregor · 14 years ago
  100. 711c52b Refactor the application of type attributes so that attributes from by John McCall · 14 years ago