1. 66581d4 Added source location for the template keyword in DependentTemplateSpecializationTypeLoc nodes (DTSTLoc). by Abramo Bagnara · 13 years ago
  2. 0b23971 use cheaper llvm APIs for various bits of IR generation. by Chris Lattner · 13 years ago
  3. 6ef016f simplify code and smallvectorize. by Chris Lattner · 13 years ago
  4. 5b6a3dd Canonicalize the base class used in the nested-name-specifier of a generated by Manuel Klimek · 13 years ago
  5. 210386e Fix the result of VarDecl::checkInitIsICE so it is consistently accurate in C++11 mode. PR11928. by Eli Friedman · 13 years ago
  6. b4a3ef7 Tweak format string checking to work with %@ and ObjC toll-free bridging. <rdar://problem/10814120> by Ted Kremenek · 13 years ago
  7. fd8fed9 Added MSVC visualizers for PointerIntPair and PointerUnions. by Aaron Ballman · 13 years ago
  8. b822f72 Rewrite the debug action handling to take -verify into account. by Eric Christopher · 13 years ago
  9. 1c79dc4 Update the command line here and update the comment, we're just going by Eric Christopher · 13 years ago
  10. 38a4291 Removed redundant location info from ElaboratedTypeLoc / DependentNameLoc / DependentTSTLoc. Uniformed names referencing elaborated keyword. No intended functionality changes. by Abramo Bagnara · 13 years ago
  11. b918d6b objc: fixes a problem in block type comparison involving by Fariborz Jahanian · 13 years ago
  12. 5f3c7fa Let an ivar directly refer property TAG. by Devang Patel · 13 years ago
  13. afe55fb - Turn the other distribution checks into range compares. by Benjamin Kramer · 13 years ago
  14. 55d23c9 Added location for template keyword in TemplateSpecializationTypeLoc. In the process removed some naming ambiguities. by Abramo Bagnara · 13 years ago
  15. 668ecd9 Consolidate the ubuntu detection logic a bit, add an entry for Ubuntu 12.04 aka precise pangolin. by Benjamin Kramer · 13 years ago
  16. 9d9922a Fixed instantiation of DependentScopeDeclRefExpr. by Abramo Bagnara · 13 years ago
  17. 5bbc385 Move instantiateTemplateAttribute into the sema namespace, make helpers static. by Benjamin Kramer · 13 years ago
  18. 4cf96bb Test for r149855. by Craig Topper · 13 years ago
  19. 5fa5608 Fix vector splat casts to cast element to the appropriate vector element before inserting into the vector. Fixes PR11930. by Craig Topper · 13 years ago
  20. 41576d4 Implement name mangling for scalar value initialization. Reported on IRC by Xeo. by Richard Smith · 13 years ago
  21. e6cc51d Invalid O levels on the command line no longer have a confusing error. by Aaron Ballman · 13 years ago
  22. 96ad633 [clang.py] Implement Type.is_pod by Gregory Szorc · 13 years ago
  23. 2d10680 [clang.py] Change type -> Type by Tobias Grosser · 13 years ago
  24. eb9ff2e [clang.py] Implement Cursor.enum_type by Tobias Grosser · 13 years ago
  25. 28d939f [clang.py] Implement Cursor.underlying_typedef_type by Tobias Grosser · 13 years ago
  26. 250d217 [clang.py] add TypeKind.VECTOR by Tobias Grosser · 13 years ago
  27. eb13634 [clang.py] Add CursorKind.{is_translation_unit, is_preprocessing, is_unexposed} by Tobias Grosser · 13 years ago
  28. 64e7bdc [clang.py] Implement Cursor.hash by Tobias Grosser · 13 years ago
  29. ea40382 [clang.py] Expose diagnostic category and option info to Python binding by Tobias Grosser · 13 years ago
  30. 7485833 [clang.py] Implement __eq__ and __ne__ on SourceLocation and SourceRange by Tobias Grosser · 13 years ago
  31. b919815 Fix a typo (builting -> builtin). by Benjamin Kramer · 13 years ago
  32. 6496bd1 Move operator overload out of line. Calling operator<< on a forward declared type doesn't seem to work on MSVC. by Benjamin Kramer · 13 years ago
  33. b11a7fd Fixing a warning in MSVC (this is also a test commit) by Aaron Ballman · 13 years ago
  34. d79093a constexpr: Implement DR1358: An instantiation of a constexpr function which by Richard Smith · 13 years ago
  35. 9401069 reapply the patches reverted in r149477, which enable ConstantDataArray. by Chris Lattner · 13 years ago
  36. f7ccbad Basic: import SmallString<> into clang namespace by Dylan Noblesmith · 13 years ago
  37. 6f42b62 Basic: import OwningPtr<> into clang namespace by Dylan Noblesmith · 13 years ago
  38. 7af19b8 Try to fix Benjamin's r149781 on MSVC. by NAKAMURA Takumi · 13 years ago
  39. 9ec7197 constexpr: Fix implementation of DR1311: check for volatile qualifiers in by Richard Smith · 13 years ago
  40. eac1f67 Preserve alignment for Neon vld1_lane/dup and vst1_lane intrinsics. by Bob Wilson · 13 years ago
  41. a3cb144 Skip freebsd driver test when ppc32/ppc64 targets are not configured. by Bob Wilson · 13 years ago
  42. 6cd03db A useful approximation of initializer list constructors. by Sebastian Redl · 13 years ago
  43. 96715b2 Factor out the actual overload resolution from TryConstructorInitialization, since it needs to be used again for list constructor resolution. by Sebastian Redl · 13 years ago
  44. 08ae369 Don't unwrap initializer lists before calling TryConstructorInitialization, instead doing a little more work inside. This should make finding initializer list constructors easier, as well as fix one place where the ({}) vs {} issue was probably poorly handled. by Sebastian Redl · 13 years ago
  45. a4e6453 Remove an unused and unimplemented function prototype. by Sebastian Redl · 13 years ago
  46. 9e0393d Also, these objc++ rewriter tests are meant to run in NeXt's fragile-abi mode. by Fariborz Jahanian · 13 years ago
  47. dcc8e3f These tests are intended to run in NeXt's legacy objective-c abi (fragile-abi). by Fariborz Jahanian · 13 years ago
  48. 90feede Some compilers do require Diagnostic.h to be present here. by Benjamin Kramer · 13 years ago
  49. 2e033a7 Don't include Diagnostics.h twice when it's required zero times. by Benjamin Kramer · 13 years ago
  50. 8fe83e1 Move a method from IdentifierTable.h out of line and remove the SmallString include. by Benjamin Kramer · 13 years ago
  51. fdd1560 Remove Diagnostic.h include from Preprocessor.h. by Benjamin Kramer · 13 years ago
  52. 00bd44d Move various diagnostic operator<< overloads out of line and remove includes of Diagnostic.h. by Benjamin Kramer · 13 years ago
  53. ef9b60f Move Storage and StorageAllocator out of the PartialDiagnostic class so we can forward declare them. by Benjamin Kramer · 13 years ago
  54. c6c090d StaticAnalyzer: Remove FixIts from PathDiagnosticPieces. by Benjamin Kramer · 13 years ago
  55. 282e7e6 In C++11 mode, when an integral constant expression is desired and we have a by Richard Smith · 13 years ago
  56. f39aec1 Don't allow a value of a scoped enumeration to be used as the first bound for an by Richard Smith · 13 years ago
  57. e59ec3d [analyzer] Make sure Containers OutOfBounds checker does not crash on undefined arguments, when CF functions are called with wrong number of arguments. by Anna Zaks · 13 years ago
  58. a506586 Disallow constexpr main. by Richard Smith · 13 years ago
  59. 0b458fd Fix a rejects-valid in C++11: array new of a negative size, or overflowing array by Richard Smith · 13 years ago
  60. 5b66405 Unbreak failing test added in r149738. by Richard Smith · 13 years ago
  61. 9ec9ce1 ArrayRef goodness in MultiplexConsumer, no functionality change. by Argyrios Kyrtzidis · 13 years ago
  62. 272afe4 Remove unused field from FixItRecompile. by Argyrios Kyrtzidis · 13 years ago
  63. 507a8a3 Don't warn on use of default allocator with an over-aligned type when the by Nick Lewycky · 13 years ago
  64. e839806 Fix ASTMerge tests that I broke in my previous commit. by Argyrios Kyrtzidis · 13 years ago
  65. 893242f autoconf: update config header by Dylan Noblesmith · 13 years ago
  66. 52a3888 [analyzer] Turn on by default two checkers: by Anna Zaks · 13 years ago
  67. 4f502fb [analyzer] fixup to the previous commit. by Anna Zaks · 13 years ago
  68. 1efcc42 [analyzer] Minor cleanups to the ObjCSelfInitChecker. by Anna Zaks · 13 years ago
  69. 1c59408 Fixed some testsuite problems introduced by my by Sean Callanan · 13 years ago
  70. 279114c Comment mystery code. by Nick Lewycky · 13 years ago
  71. 1206f73 Revert r149721. chapuni tells me akyrtzi already fixed the test by Nico Weber · 13 years ago
  72. b3ca263 Use variable in place of multiple CI.getFrontendOpts() calls and use a bit by Argyrios Kyrtzidis · 13 years ago
  73. 1a0d92f New test case. by Devang Patel · 13 years ago
  74. 50a9a12 Clang has existing support for debuggers that by Sean Callanan · 13 years ago
  75. 693a70d Create new tag for the property. This is a work in progress. by Devang Patel · 13 years ago
  76. 1836db0 [libclang] Stick to the silly notion that a forward class/protocol by Argyrios Kyrtzidis · 13 years ago
  77. 0cc5d40 Suppress the used-but-not-defined warning for static data members while I look into a rather nasty bug in the new odr-use marking code. by Eli Friedman · 13 years ago
  78. 5ba73e1 constexpr: by Richard Smith · 13 years ago
  79. c08c88c Update tests so that they don't rely upon LLVMDebugVersion number. by Devang Patel · 13 years ago
  80. f42f85c Make _mm_cmpgt_epi8 immute to -funsigned-char. by Nick Lewycky · 13 years ago
  81. 798d14f Try to get test passing on windows. by Nico Weber · 13 years ago
  82. cefc7b2 Make explicit captures which cause implicit captures work correctly. by Eli Friedman · 13 years ago
  83. b942cb2 Implement implicit capture for lambda expressions. by Eli Friedman · 13 years ago
  84. 285c607 Make sure that the layout-override parser grabs the size, not the data by Douglas Gregor · 13 years ago
  85. b70126a When a pack expansion occurs in the template argument list of an alias by Douglas Gregor · 13 years ago
  86. 23a4ddf Add a triple to test/SemaObjC/format-strings-objc.m to make it pass in windows hosts. by Argyrios Kyrtzidis · 13 years ago
  87. acbabf1 Don't warn about anonymous struct/union in C11. by Hans Wennborg · 13 years ago
  88. 8fbbae5 Implement support for a pack expansion into a fixed-length by Douglas Gregor · 13 years ago
  89. 09e9cf0 [analyzer] Testing: add automated reference results reset. by Anna Zaks · 13 years ago
  90. 71fd6cc Fix -ftrap-function fallout from llvm r145714. <rdar://problem/10799325> by Bob Wilson · 13 years ago
  91. a83f4d2 Change Lexer::makeFileCharRange() to have it accept a CharSourceRange by Argyrios Kyrtzidis · 13 years ago
  92. cbf46a0 Change the fixed array of FixitHints to a SmallVector to lift off by Argyrios Kyrtzidis · 13 years ago
  93. 8deabc1 Move isSentinelNullExpr() from Sema to ASTContext to make it more widely by Argyrios Kyrtzidis · 13 years ago
  94. d603bd1 Further downgrade -Warc-bridge-casts-disallowed-in-nonarc to a warning (not mapped to an error). We can consider mapping it back to an error later. by Ted Kremenek · 13 years ago
  95. 2e51562 Thread safety analysis: by Richard Smith · 13 years ago
  96. aacde71 Thread safety analysis: at a CFG join point between a block terminating in a by Richard Smith · 13 years ago
  97. 41f4431 C++ 5.2.10p2 has a note that mentions that, subject to all other restrictions, by Chad Rosier · 13 years ago
  98. 3c0e80e Refactor capture in blocks to use new-style capture hooks. Start adding a bit of the code for lambdas. The only visible changes are that we use the C++11 odr-used rules to figure out when a variable is captured, and type-checking in lambdas is slightly more accurate. by Eli Friedman · 13 years ago
  99. 7a0a31c [frontend] Don't allow a mapping to a warning override an error/fatal mapping. by Chad Rosier · 13 years ago
  100. d67d0cc Note whether a lambda is mutable in the LambdaScopeInfo; this information will be necessary to handle references to captured variables. by Eli Friedman · 13 years ago