1. a03f157 Invalidate the alloca region by setting its default value to conjured symbol. by Zhongxing Xu · 15 years ago
  2. d966a55 Move the check for vprintf* functions inside of SemaCheckStringLiteral. Fixes PR4470. by Anders Carlsson · 15 years ago
  3. ae0b243 make these tests pass with the stack canary stuff even on targets where they default to on. by Chris Lattner · 15 years ago
  4. 49e2e99 Now this test case passes. by Zhongxing Xu · 15 years ago
  5. 6bd8a52 Invalidate a field of struct type by setting its default value to conjured by Zhongxing Xu · 15 years ago
  6. 45483f7 Add stack protector support to clang. This generates the 'ssp' and 'sspreq' by Bill Wendling · 15 years ago
  7. 1bd1f6e OpenCL 1.0 support: by Nate Begeman · 15 years ago
  8. 364e021 Improve support for overloaded operator templates. by Douglas Gregor · 15 years ago
  9. 309fe0d Fix the parser error hanlding for __builtin_offsetof to actually print by Eli Friedman · 15 years ago
  10. 5d39dee Fix a bogus error overloading an operator where the only class by Eli Friedman · 15 years ago
  11. 8f031b3 Implement support for the format_arg attribute. Fixes PR4442. by Anders Carlsson · 15 years ago
  12. 0c6139d Make it possible for using decls to point to operators. Fixes PR4441. by Anders Carlsson · 15 years ago
  13. 508f1c8 During template argument deduction from a function call, allow by Douglas Gregor · 15 years ago
  14. baf45d3 More auto work. by Anders Carlsson · 15 years ago
  15. 714d35b Fix test. by Anders Carlsson · 15 years ago
  16. 8a5cb11 A little template argument deduction test uncovered an "oops". As part by Douglas Gregor · 15 years ago
  17. f670c8c Template argument deduction is no longer responsible for checking by Douglas Gregor · 15 years ago
  18. e7cf07d Can't have arrays of auto. by Anders Carlsson · 15 years ago
  19. e2bb224 An auto variable can't appear in its own initializer. by Anders Carlsson · 15 years ago
  20. e89d159 Implement enough of the 'auto' keyword so we can claim to support N2546. by Anders Carlsson · 15 years ago
  21. 72240d7 Revrt PR4228 fix for now. by Devang Patel · 15 years ago
  22. 500d331 Improve template argument deduction for reference parameters when by Douglas Gregor · 15 years ago
  23. e8c9e92 OpenCL 1.0 Support: by Nate Begeman · 15 years ago
  24. b78d833 Improve error recovery in C++: when we hit 'implicit int' cases in C++, by Chris Lattner · 15 years ago
  25. c8e27cc fix PR4452, a crash on invalid. The error recovery is still terrible in this case by Chris Lattner · 15 years ago
  26. bc13ab2 Fix another assert related to using decls. by Anders Carlsson · 15 years ago
  27. 8b50d01 When creating LookupResults, see through UsingDecls. Fixes PR4450. by Anders Carlsson · 15 years ago
  28. 87471f5 Fix PR4448. by Anders Carlsson · 15 years ago
  29. 58d29a4 OpenCL 1.0 support: explicit casts to ext-vector types by Nate Begeman · 15 years ago
  30. 1637be7 Implicit instantiation for function template specializations. by Douglas Gregor · 15 years ago
  31. 6c07bdb Introduce a new concept to the static analyzer: SValuator. by Ted Kremenek · 15 years ago
  32. a1fbe86 Test case for my last patch. by Fariborz Jahanian · 15 years ago
  33. e53060f Improved semantic analysis and AST respresentation for function templates. by Douglas Gregor · 15 years ago
  34. 131f465 OpenCL 1.0 Support, patch 1/N: upper case swizzle operator and hex element index. by Nate Begeman · 15 years ago
  35. 30b983b Introduce tools/index-test. by Argyrios Kyrtzidis · 15 years ago
  36. a07c33e Decltype needs to have a dependent type if the expr passed to it is type dependent. Fixes PR4444. by Anders Carlsson · 15 years ago
  37. 60a9a2a C++ decltype support (N2343) by Anders Carlsson · 15 years ago
  38. 3688fc6 Fix a clang crash caused by incorrect user code. by Fariborz Jahanian · 15 years ago
  39. 34d1dc9 Implement matching of function templates, so that one can declare overloaded function templates. C++ [temp.over.link] paragraphs 4-8. by Douglas Gregor · 15 years ago
  40. 9ca97ba Add test for [class.local]p2. by Anders Carlsson · 15 years ago
  41. 52591bf Make sure that the template parameter lists get from the parser down to ActOnFunctionDeclarator for function template definitions by Douglas Gregor · 15 years ago
  42. 3aa518b Add test for [class.nested.type]p1 by Anders Carlsson · 15 years ago
  43. e98da2e Support for [class.local]p4. by Anders Carlsson · 15 years ago
  44. e41590d [class.local] p1 and p3. Also, add back the xcodeproj file. by Anders Carlsson · 15 years ago
  45. e542c86 Start propagating template parameter lists to the right places to by Douglas Gregor · 15 years ago
  46. c38e9af Patch fixes an obscure bug when 'used' attribute is applied to by Fariborz Jahanian · 15 years ago
  47. 44bc2d5 Make sure that argument-dependent lookup looks into the global scope by Douglas Gregor · 15 years ago
  48. e67068c Add a test illustrating our current inability to properly cope with the point of instantation of a member function of a class template specialization by Douglas Gregor · 15 years ago
  49. 33a3907 New test for when the subexpressions within a typeid are potentially evaluated. We seem to be the only ones to get this right. by Douglas Gregor · 15 years ago
  50. d6bebbf fix PR4423. by Chris Lattner · 15 years ago
  51. d7b9e9f Some semantic tests for implicit instantiations by Douglas Gregor · 15 years ago
  52. 4c4f7cb Robustify a bunch of C++-related declaration actions. by Douglas Gregor · 15 years ago
  53. d7f37bf Implement implicit instantiation of the member functions of a class template by Douglas Gregor · 15 years ago
  54. c1005ac Fixed text of a diagnostics. by Fariborz Jahanian · 15 years ago
  55. 5414a5c Return UnknownVal for pointer arithmetic on struct fields. by Zhongxing Xu · 15 years ago
  56. 3da83eb Made improvements in c++'s object model patch on Doug's review. by Fariborz Jahanian · 15 years ago
  57. 9cfbe48 Parsing and AST support for using declarations, from John Thompson! by Douglas Gregor · 15 years ago
  58. 6aed766 Add -fblocks by Douglas Gregor · 15 years ago
  59. e0762c9 Keep track of when declarations are "used" according to C and by Douglas Gregor · 15 years ago
  60. 7d5c74e Use QualType to represent block's implicit return type as by Fariborz Jahanian · 15 years ago
  61. f8dcb86 Patch for implementation of C++'s object model. This is work in progress. by Fariborz Jahanian · 15 years ago
  62. 45257c3 A further step of r73690: associate the cast-to type with the created symbol, by Zhongxing Xu · 15 years ago
  63. 005f07b If the SymbolicRegion was cast to another type, use that type to create the by Zhongxing Xu · 15 years ago
  64. 59c03ff Modify test case comments. by Zhongxing Xu · 15 years ago
  65. 88c675f When casting region, if we do not create an element region, record the cast-to by Zhongxing Xu · 15 years ago
  66. eb44e0a Add a target triple to a couple of tests which depend on it. Reported by Eli Friedman · 15 years ago
  67. c19ee3e Diagnose class members that shadow a template parameter. Fixes by Douglas Gregor · 15 years ago
  68. 6a6170c Fix regression testing in Xcode, again by Douglas Gregor · 15 years ago
  69. 0ffd9ff Implement correct name lookup inside an initializer of a C++ class static data member. by Argyrios Kyrtzidis · 15 years ago
  70. 9cdda0c Support dependent extended vector types and template instantiation by Douglas Gregor · 15 years ago
  71. 6a588dd Diagnose the use of attributes on namespace aliases, from Anis Ahmad by Douglas Gregor · 15 years ago
  72. 2250d31 Use env properly in test/Driver/analyze.c by Douglas Gregor · 15 years ago
  73. 176d2c1 Make these driver tests do the right thing even when MACOSX_DEPLOYMENT_TARGET is set. by Douglas Gregor · 15 years ago
  74. 407899b Fix typo in prev commit. by Daniel Dunbar · 15 years ago
  75. f2edbf3 Darwin/Driver: Also look at -arch command line options when finding the default by Daniel Dunbar · 15 years ago
  76. fdd8b8e Add IOKit test cases for retain/release checker. by Ted Kremenek · 15 years ago
  77. ebfc180 Update Clang to include the InitializeAllTargets and by Douglas Gregor · 15 years ago
  78. 9983169 It is possible that main input file does not have any symbol with debug info. To handle this edge case, always create main compile unit first. by Devang Patel · 15 years ago
  79. 0b6b0e9 Test case was left behind from my last patch. by Fariborz Jahanian · 15 years ago
  80. c581e6e testcase for r72869, it turns out that it happens in Ruby. by Chris Lattner · 15 years ago
  81. 143b2fc Use canonical type for building ElementRegion. Otherwise ElementRegions cannot by Zhongxing Xu · 15 years ago
  82. 78d5b5e Do not invalidate unboundable regions in GRSimpleVals::EvalCall(). by Zhongxing Xu · 15 years ago
  83. f54741e Handle temporaries in default arguments. by Anders Carlsson · 15 years ago
  84. 8849f11 PR4395: Don't detect token concatenation in C mode for C++-specific tokens. by Eli Friedman · 15 years ago
  85. b280638 More [basic.lookup.unqual] tests. - p13 and p14 are important failures. by Daniel Dunbar · 15 years ago
  86. cbeedfa Test for [basic.lookup.unqual]p3 by Daniel Dunbar · 15 years ago
  87. 6896a37 Fix #pragma GCC system_header by making it insert a virtual linemarker into by Chris Lattner · 15 years ago
  88. a81aae2 rename test by Chris Lattner · 15 years ago
  89. ea9ff8d convert this test to -verify mode. by Chris Lattner · 15 years ago
  90. 3ee211f Fix PR2741 by making our newline tracking be aware of newlines that by Chris Lattner · 15 years ago
  91. 4c4c527 PR4390: Make sure to handle anonymous unions correctly while building by Eli Friedman · 15 years ago
  92. 4e36cca Test modification. Patch by Jean-Daniel Dupas by Fariborz Jahanian · 15 years ago
  93. 5e9f35c Update LLVM. by Douglas Gregor · 15 years ago
  94. 5bc8610 PR4351: Add constant evaluation for constructs like "foo == NULL", where by Eli Friedman · 15 years ago
  95. 1b63e4f Sink the BuiltinInfo object from ASTContext into the by Chris Lattner · 15 years ago
  96. 7b3684a change ParseStatementOrDeclaration to emit the 'missing ;' with by Chris Lattner · 15 years ago
  97. a1e6de9 Fix the calling convention for structs/unions containing SSE vectors on by Eli Friedman · 15 years ago
  98. 4127fcc Don't include system headers when overriding triple. by Daniel Dunbar · 15 years ago
  99. 2a0f409 Force Obj-C runtime version for this test by Daniel Dunbar · 15 years ago
  100. d5134b0 Switch to the new test runner. - TestRunner.sh still needs to be moved over. by Daniel Dunbar · 15 years ago