1. 69db2dd Revert r127079: "test/Makefile: Use $(ECHOPATH) to make lit.site.cfg(s)." by Benjamin Kramer · 13 years ago
  2. 5875038 When substituting in for a template name, do not produce a qualified by Douglas Gregor · 13 years ago
  3. c494f77 When determining template instantiation arguments within a function by Douglas Gregor · 13 years ago
  4. 0b4bcb6 When transforming a substituted template type parameter, try to by Douglas Gregor · 13 years ago
  5. 7acafd0 Parser support for noexcept specifications. by Sebastian Redl · 14 years ago
  6. 9085e6f test/lit.cfg: bash is available on MSYS. by NAKAMURA Takumi · 14 years ago
  7. 6ac97b1 test/Makefile: Use $(ECHOPATH) to make lit.site.cfg(s). by NAKAMURA Takumi · 14 years ago
  8. 8e4245d test/CodeGen/2008-07-17-no-emit-on-error.c: Use LLVM's opt instead of "test(1)" for Mingw MSYS. by NAKAMURA Takumi · 14 years ago
  9. 884b9dd test: Mark 3 tests as XFAIL:cygwin,mingw. by NAKAMURA Takumi · 14 years ago
  10. 6f48d12 test: Mark two tests as XFAIL:mingw. by NAKAMURA Takumi · 14 years ago
  11. fbe5994 Much to my surprise, OverloadExprs can also point to function template decls. by Matt Beaumont-Gay · 14 years ago
  12. 67da6f6 When we're deserializing a template parameter declaration, temporarily by Douglas Gregor · 14 years ago
  13. cb710a4 Diagnose destructor templates. Fixes PR7904. by Douglas Gregor · 14 years ago
  14. 7ec1873 When clearing a LookupResult structure, clear out the naming class, by Douglas Gregor · 14 years ago
  15. 6cd9d4a Teach Sema::ActOnCXXNestedNameSpecifier and Sema::CheckTemplateIdType by Douglas Gregor · 14 years ago
  16. 087eb5a When constructing source-location information for a by Douglas Gregor · 14 years ago
  17. 9a299e0 Make sure to put template parameters into their owning template's by Douglas Gregor · 14 years ago
  18. 4a85a73 Fixed source range for ClassTemplateSpecializationDecl. by Abramo Bagnara · 14 years ago
  19. 77d4ee2 Improved TemplateTypeParmDecl end location. by Abramo Bagnara · 14 years ago
  20. ee4bfd4 Fixed end location of NonTypeTemplateParamDecl. by Abramo Bagnara · 14 years ago
  21. 1a0918a Don't consider visibility from template parameter lists if we're by John McCall · 14 years ago
  22. 0498247 Correctly handle nested switch statements in CFGBuilder when on switch statement has a condition that evaluates to a constant. by Ted Kremenek · 14 years ago
  23. 0266aa3 -Woverloaded-virtual shouldn't warn for static functions. Fixes rdar://9083431 & http://llvm.org/PR9396. by Argyrios Kyrtzidis · 14 years ago
  24. 48b8959 Don't emit unused warning for deleted functions. Fixes rdar://8365684 & http://llvm.org/PR9391. by Argyrios Kyrtzidis · 14 years ago
  25. 159c0a0 Finish updated test by Douglas Gregor · 14 years ago
  26. 9ca957a Add coverage test for CFGImplicitDtor::getDestructorDecl() when handling typedefs. by Ted Kremenek · 14 years ago
  27. 0f0ea2a Eliminate redundant nested-name-specifiers on by Douglas Gregor · 14 years ago
  28. 5f6bcbe Fixed end source location for LinkageSpecDecl. by Abramo Bagnara · 14 years ago
  29. 6771423 When we use the default template arguments of a template template by Douglas Gregor · 14 years ago
  30. c5aff44 Teach CFGImplicitDtor::getDestructorDecl() about arrays of objects with destructors. by Ted Kremenek · 14 years ago
  31. 697d42d Teach CFGImplicitDtor::getDestructorDecl() about reference types. by Ted Kremenek · 14 years ago
  32. 0a9beb5 Force CaseStmt to store its child statements in source-code order, by Douglas Gregor · 14 years ago
  33. 0483a6f Only emit string initializers in-place if types match. Fixes PR9373. by Benjamin Kramer · 14 years ago
  34. 75e8504 Fix the source range for a member access expression that includes a by Douglas Gregor · 14 years ago
  35. c9f8f5a Introduce CFGImplicitDtor::isNoReturn() to query whether a destructor actually returns. Use this for -Wreturn-type to prune false positives reported in PR 6884. by Ted Kremenek · 14 years ago
  36. 180ff3a IRGen. Fix IR when message returns reference type. // rdar://8604515. by Fariborz Jahanian · 14 years ago
  37. c314aa4 Teach libclang how to visit the children of a C++ base-class specifier by Douglas Gregor · 14 years ago
  38. b6744ef Push nested-name-specifier source location information into template by Douglas Gregor · 14 years ago
  39. bdc49d3 Pretty up the wrong-number-of-arguments-for-attribute diagnostic by by John McCall · 14 years ago
  40. 018591f Semantic checking for exception specifications should be triggered by by John McCall · 14 years ago
  41. 406f98f When we're substituting into a parameter-type-list nested inside the pattern by Douglas Gregor · 14 years ago
  42. fa0b409 PR9350: increment/decrement of char (and anything else narrower than int) by Eli Friedman · 14 years ago
  43. 059101f Push nested-name-specifier source-location information into dependent by Douglas Gregor · 14 years ago
  44. e71f3d5 Teach CFGBuilder to prune trivially unreachable case statements. by Ted Kremenek · 14 years ago
  45. fb7cb35 Don't warn about unused values in ternary ?: expressions unless both the LHS and RHS are "unused" (side-effect free). by Ted Kremenek · 14 years ago
  46. 94fdffa Push nested-name-specifier source-location information into dependent by Douglas Gregor · 14 years ago
  47. 438d7f0 Kill off more names to fix this test by Douglas Gregor · 14 years ago
  48. 425a31e Don't warning about shifting by too many bits in dead code. by Ted Kremenek · 14 years ago
  49. d25f485 Fix the test. by Roman Divacky · 14 years ago
  50. 3aea4da For C++, enhance -Warray-bounds to recursively analyze array subscript accesses in ?: expressions. by Ted Kremenek · 14 years ago
  51. 9e87687 Reinstate the introduction of source-location information for by Douglas Gregor · 14 years ago
  52. 082bf7a Don't wanr about "negative shifts" in code that is unreachable. Fixes PR 5544. by Ted Kremenek · 14 years ago
  53. cfe9af2 Implement -mrtd which sets the StdCall calling convention to be the default one. by Roman Divacky · 14 years ago
  54. c0ddef2 objc IRGen for Next runtime message API. by Fariborz Jahanian · 14 years ago
  55. 2786864 Revert r126748, my second attempt at nested-name-specifier source by Douglas Gregor · 14 years ago
  56. 90566c0 Implement comparison of C++0x scoped enumeration types. Fixes PR9333. by Douglas Gregor · 14 years ago
  57. fff9513 When digging into a cv-qualified return type that is a pointer type to by Douglas Gregor · 14 years ago
  58. ef24c4b When building a type for a typename specifier, check specifically for by Douglas Gregor · 14 years ago
  59. be38c5f Reinstate r126737, extending the generation of type-source location by Douglas Gregor · 14 years ago
  60. 44cd9f9 Revert r126737, the most recent nested-name-specifier location change, for buildbot breakage. by Douglas Gregor · 14 years ago
  61. e34e3f1 Move the bool-conversions behind the DiagRuntimeBehavior logic. It's by Chandler Carruth · 14 years ago
  62. 239cbb0 Push nested-name-specifier source location information into elaborated by Douglas Gregor · 14 years ago
  63. 2494dd0 Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  64. 2cb4222 -fwrapv should turn off the inbounds markers from geps used for pointer by Chris Lattner · 14 years ago
  65. 40d96a6 Push nested-name-specifier location information into DeclRefExpr and by Douglas Gregor · 14 years ago
  66. bf1f826 Revert r126678. by Fariborz Jahanian · 14 years ago
  67. 4c9be89 Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  68. 3d04a0e objc IRGen for Next runtime message API. by Fariborz Jahanian · 14 years ago
  69. c4d2c90 [analyzer] Remove '-analyzer-check-objc-mem' flag, the nominee for best misnomer award. by Argyrios Kyrtzidis · 14 years ago
  70. 872b8d1 Move test/SemaObjC/method-arg-decay.m -> test/Analysis/method-arg-decay.m by Argyrios Kyrtzidis · 14 years ago
  71. d655ab2 [analyzer] Run the ExprEngine depending on the CheckerManager having path-sensitive checkers. by Argyrios Kyrtzidis · 14 years ago
  72. 344500e [analyzer] The current UninitializedValuesChecker will go away, remove '-warn-uninit-values'. by Argyrios Kyrtzidis · 14 years ago
  73. 7c3179c Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
  74. b3d74da [analyzer] Migrate NSErrorChecker and DereferenceChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  75. ef34d77 test: Add the feature "shell". Frontend/dependency-gen.c would be executable with shell. by NAKAMURA Takumi · 14 years ago
  76. b154063 Add a test case that would have caught the bug fixed in r126640. by Chandler Carruth · 14 years ago
  77. 3f06e27 Make skipping of vardecls more precise: it's ok to skip a decl if the entire by Chris Lattner · 14 years ago
  78. 9467110 make switch constant folding a bit stronger, handling a missed case. by Chris Lattner · 14 years ago
  79. 8402155 Rename tok::eom to tok::eod. by Peter Collingbourne · 14 years ago
  80. f079b73 Retry r126357. Use CharUnits for the Size and DataSize calculations when by Ken Dyck · 14 years ago
  81. d84f422 [analzyer] Migrate CallAndMessageChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  82. bd90076 [analyzer] Migrate AttrNonNullChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  83. 7f649d7 [analyzer] Migrate ReturnUndefChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  84. 267aa5c [analyzer] Migrate UndefinedAssignmentChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  85. cc05d51 [analyzer] Migrate UndefBranchChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  86. 265c674 [analyzer] Migrate UndefCapturedBlockVarChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  87. 180e03f [analyzer] Migrate UndefResultChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  88. 3267d95 [analyzer] Migrate NoReturnFunctionChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  89. a676d50 [analyzer] Move the DeadStores checker out of the 'core' package. by Argyrios Kyrtzidis · 14 years ago
  90. 1034870 [analyzer] Migrate BuiltinFunctionChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  91. f029366 [analyzer] Migrate OSAtomicChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  92. 0535701 [analyzer] Migrate ArrayBoundCheckerV2 to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  93. 58f2e7c [analyzer] Turn -analyzer-stats into -analyzer-checker=debug.Stats by Argyrios Kyrtzidis · 14 years ago
  94. 6dd4dff [analyzer] Remove '-analyzer-experimental-checks' flag. by Argyrios Kyrtzidis · 14 years ago
  95. 312dbec [analyzer] Migrate MallocChecker to CheckerV2. by Argyrios Kyrtzidis · 14 years ago
  96. 035287d remove a bogus assertion, add a comment. by Chris Lattner · 14 years ago
  97. 3858938 make switch condition constant folding much more aggressive, handling by Chris Lattner · 14 years ago
  98. abea951 Add -fcxx-exceptions to all tests that use C++ exceptions. by Anders Carlsson · 14 years ago
  99. fda0f1f First tiny step to implementing PR9322: build infrastructure for only emitting the by Chris Lattner · 14 years ago
  100. cf4ff46 Fix this test case for CMake builds after r126502, which sneakily changed the actual executable name to clang-<version>. by Frits van Bommel · 14 years ago