1. 737978d Eliminate literal 8s from LayoutUnionField by converting NumBytesToAppend to by Ken Dyck · 13 years ago
  2. edda6e4 Eliminate literal 8s from LayoutBitField(), converting variables to by Ken Dyck · 13 years ago
  3. 74b485a Set the correct anonymous namespace (must be last reopening), and behave correctly in the presence of the ever-annoying linkage specifications. by Sebastian Redl · 13 years ago
  4. 7c0837f Fix adding an anonymous namespace in a chained PCH to a namespace from a previous PCH. by Sebastian Redl · 13 years ago
  5. 58a2cd8 Synthesizing the definition of an implicit member is an AST modification, so notify any mutation listeners of it. This fixes a crasher in chained PCH, where an implicit destructor in a PCH gets a definition in a chained PCH, which is then lost. However, any further use of the destructor would cause its definition to be regenerated in the final file, hiding the bug. by Sebastian Redl · 13 years ago
  6. 024e1c4 On reading DeclContexts from PCH, check for visible updates even if the context was empty in the original version. Also, if there are any, tell the context that it has external visible decls. This fixes the problem that a namespace that was empty in the initial PCH (could also happen if the initial PCH didn't include any std header but caused implicit creation of namespace std, e.g. due to implicit declaration of a virtual destructor) never found any declaration declared in *any* chained PCH. Very ugly when the chained PCH includes all that std stuff, as the errors were effectively the same as not including std headers. by Sebastian Redl · 13 years ago
  7. d941fa4 Make the invalid declarator recovery when parsing members work the same as when parsing global decls. It's still rather broken (skipping much too far when the declarator belongs to a function definition), but at least not so broken as to mismatch braces. Tested by the removal of the fixme in the template test case. by Sebastian Redl · 13 years ago
  8. 9856c99 Give MultiplexConsumer.h a header guard. by Sebastian Redl · 13 years ago
  9. b5ef3ca Fix PathDiagnosticClients.h header guard. (Case error) by Sebastian Redl · 13 years ago
  10. c1d3ffb Store the full list of pending instantiations in a chained PCH. Previously we attempted to store only new pending instantiations, but our filter was incorrect, dropping implicit instantiations of class template members. It's just not worth coming up with a complex filter that is correct, when the only cost is PCH files that are a few hundred bytes (at most) larger. by Sebastian Redl · 13 years ago
  11. a5d318a Downgrade unnecessary "typename" from error to warning in Microsoft mode. by Francois Pichet · 13 years ago
  12. b9e6b2c Convert AccessInfo::AccessAlignment to CharUnits. No change in functionality by Ken Dyck · 13 years ago
  13. c556ef2 PR9214: Convert the DIBuilder API to use ArrayRef. by Jay Foad · 13 years ago
  14. 28ebde5 Convert CGBitFieldInfo::FieldByteOffset to CharUnits. No change in by Ken Dyck · 13 years ago
  15. c0a4559 GCC seems to create address-of expression manglings when passing *any* by John McCall · 13 years ago
  16. a0ce15c Update the mangler for some of the "new" unresolved-name manglings. by John McCall · 13 years ago
  17. 312eadb Implement a new identifier-classification scheme where Sema by Douglas Gregor · 13 years ago
  18. 1b60052 The ABI settled on mangling float literals with lowercase hex dumps. by John McCall · 13 years ago
  19. 1501ba3 Put -Wunneeded-internal-declaration under UnusedFunction group so it will be disabled with -Wno-unused-function. by Argyrios Kyrtzidis · 13 years ago
  20. 9b6347c Implement most of the remaining logic in __is_literal type trait. This by Chandler Carruth · 13 years ago
  21. 3840281 Add support for '__is_literal_type' spelling of the existing by Chandler Carruth · 13 years ago
  22. 4d6e5a2 Begin tracking trivialness of move constructors and move assignment by Chandler Carruth · 13 years ago
  23. c69f636 Flesh out these tests just a tad more. This provides targeted by Chandler Carruth · 13 years ago
  24. 43a56a0 Test POD and trivial type traits given a class derived from a generic by Chandler Carruth · 13 years ago
  25. 34eaaa5 Use a more precise name for some of the types here, and re-group several by Chandler Carruth · 13 years ago
  26. e567e83 Mechanical change moving all of the test statements away from a pattern by Chandler Carruth · 13 years ago
  27. 0d2d1bc Teach the AST reader and writer to preserve the __DEPRECATED bit in by Chandler Carruth · 13 years ago
  28. c69a505 Remove unused STL header includes. by Jay Foad · 13 years ago
  29. f8c247d Move all of the logic for __DEPRECATED to the driver based on comments by Chandler Carruth · 13 years ago
  30. 89ebaed "note" location of forward class used as receiver of by Fariborz Jahanian · 13 years ago
  31. 4a47e8d Remove unnecessary const away cast in LateTemplateParserCallback. by Francois Pichet · 13 years ago
  32. b7e9589 Implement basic __is_trivial type-trait support, enough to close PR9472. by Chandler Carruth · 13 years ago
  33. 4e61ddd Sort the type traits in a few places where they weren't previously by Chandler Carruth · 13 years ago
  34. 1cfe3c3 Fix Clang's __DEPRECATED define to be controled by -Wdeprecated. This by Chandler Carruth · 13 years ago
  35. f1cc1d0 Like the coding standards say, do not use "using namespace std". by Jay Foad · 13 years ago
  36. f3babb9 GCC overloads -Wwrite-strings just to make it extra confusing. While it by Chandler Carruth · 13 years ago
  37. 50465d1 There were some frustrating problems with the implementation of by Chandler Carruth · 13 years ago
  38. 81ef3e6 Diagnose C++ abstract parameters for Objective-C methods. by John McCall · 13 years ago
  39. e5e3d31 Exhaust the cases. by Argyrios Kyrtzidis · 13 years ago
  40. b6b2b18 Fix an assertion when code-completing, rdar://9288730 & http://llvm.org/PR9728. by Argyrios Kyrtzidis · 13 years ago
  41. 120bf32 Tie debug information for method declaration with debug information for method definition. by Devang Patel · 13 years ago
  42. bb29d1b Don't allow reinterpret_cast to reference of vector element and property expression. Thanks goes to Eli Friedman! by Argyrios Kyrtzidis · 13 years ago
  43. 13c8ccb Teach libclang to be more careful around BlockDecls, and don't assume by Douglas Gregor · 13 years ago
  44. 32c1388 don't warn about empty macro arguments in c++'0x mode, since it sucked in by Chris Lattner · 13 years ago
  45. d4a0caf Correctly emit a diagnostic for multiple templated function definitions in -flate-template-parsing mode. by Francois Pichet · 13 years ago
  46. b464a5b reinterpret_cast to reference of a bit-field is not allowed. by Argyrios Kyrtzidis · 13 years ago
  47. 7884403 At the end of the translation unit, defining a vtable can introduce by Douglas Gregor · 13 years ago
  48. 8387e2a Add -fdelayed-template-parsing option. Using this option all templated function definitions are parsed at the end of the translation unit only if it is required by an actual instantiation. As such all the symbols of the TU are available during name lookup. by Francois Pichet · 13 years ago
  49. 64089ce Fixes an instance method meta-data generation bug in by Fariborz Jahanian · 13 years ago
  50. 48f41ea Workaround buildbot failure by hacking up this test to emit llvm IR. by Bob Wilson · 13 years ago
  51. 4bada2e Do not return true from MergeFunctionDecl for a warn_static_non_static warning in Microsoft mode. by Francois Pichet · 13 years ago
  52. a61aedc For -Wlogical-op-parentheses, point at '&&', not '||'. Fixes rdar://9125333. by Argyrios Kyrtzidis · 13 years ago
  53. cfe38c4 I concur with DPG here. This does indeed apply in 0x mode. Added test by Chandler Carruth · 13 years ago
  54. b65abda Don't enter a qualified scope for an invalid decl. by Argyrios Kyrtzidis · 13 years ago
  55. e970c60 Add static analyzer support for C++'0X nullptr. Patch by Jim Goodnow II. by Ted Kremenek · 13 years ago
  56. e0afc89 Replace a couple of literal 8s with ASTContext::getCharWidth(). No change in by Ken Dyck · 13 years ago
  57. 79be76c Eliminate some literal 8s from EmitNullInitialization() by converting by Ken Dyck · 13 years ago
  58. e36bca6 In IsUserDefinedConversion try to recover from RequireCompleteType returning true. by Argyrios Kyrtzidis · 13 years ago
  59. 0ebce0e Eliminate some literal 8s from EmitDeclare by converting to CharUnits. No by Ken Dyck · 13 years ago
  60. 573be63 Use CharUnits to eliminate some literal 8s in by Ken Dyck · 13 years ago
  61. 18052cd Replace some literal 8s with char width and char align. No change in by Ken Dyck · 13 years ago
  62. 0259c3a PTX: Add default PTX calling conventions by Justin Holewinski · 13 years ago
  63. cf320c6 For consistency, change suffix from war_ to warn_ for some Microsoft warnings I introduced lately. by Francois Pichet · 13 years ago
  64. 2e510a0 Downgrade error "static declaration of 'foo' follows non-static declaration" to a warning in Microsoft mode. by Francois Pichet · 13 years ago
  65. 2ac0b7a For by Argyrios Kyrtzidis · 13 years ago
  66. 49e5b91 _declspec is an alias for __declspec. by Francois Pichet · 13 years ago
  67. 97fb6f3 Add a testcase for svn r129964 (Neon load/store intrinsic alignments). by Bob Wilson · 13 years ago
  68. 34f52d1 Fix crashing rdar://9122854 & http://llvm.org/PR9461. by Argyrios Kyrtzidis · 13 years ago
  69. e8ba8d7 Wire up the -ftest-coverage and -fprofile-arcs flags to .gcno file emission (at by Nick Lewycky · 13 years ago
  70. 3cc3ffc Fix indentation. No functional change. by Nick Lewycky · 13 years ago
  71. 144bc08 Don't hide #warnings in a system header, same as gcc. Fixes rdar://8495837. by Argyrios Kyrtzidis · 13 years ago
  72. cfdadfe Move the check whether a diagnostic must be ignored because it is in a system header by Argyrios Kyrtzidis · 13 years ago
  73. 46f1110 Fix gcc warning. Add parens to this assert, incidentally reassociating it, but the condition is the same either way. by Richard Smith · 13 years ago
  74. bb9b80c Add a fixit suggest for missing case keywords inside a switch scope. For instance, in the following code, 'case ' will be suggested before the '1:' by Richard Trieu · 13 years ago
  75. 723b178 Alphabetize this one flag, just to pull it out of my patch. by Nick Lewycky · 13 years ago
  76. 8a3a7f3 Driver/Darwin: Allow OS X deployment targets like 10.4.11, even though they by Daniel Dunbar · 13 years ago
  77. 3e8dc2a Use the ArrayFiller to fill out "holes" in the array initializer due to designated initializers, by Argyrios Kyrtzidis · 13 years ago
  78. 6f14165 PR9214: Convert Metadata API to use ArrayRef. by Jay Foad · 13 years ago
  79. cf3ce5d Adds a function to run FrontendActions over in-memory code. This is by Manuel Klimek · 13 years ago
  80. 0e02f6e Driver: Tweak -Xarch diags a bit more, we can't actually differentiate between by Daniel Dunbar · 13 years ago
  81. 7e9293b Driver: Improve -Xarch argument diagnostics a bit. by Daniel Dunbar · 13 years ago
  82. b8a9d3b Fixit suggestion for adding missing tag name should have a space after the tag name. Fixes rdar://9295072 by Argyrios Kyrtzidis · 13 years ago
  83. 13d7dc0 Have #pragma message not turn into error by -Werror, by default. Fixes rdar://9308989. by Argyrios Kyrtzidis · 13 years ago
  84. 1cfeefd PR9772: Fix the definition of WINT_MIN and WINT_MAX on Linux -ffreestanding. by Eli Friedman · 13 years ago
  85. 67a5773 The 0.98 revision of the x86-64 ABI clarified a lot of things, some by John McCall · 13 years ago
  86. 4423ac0 For by Argyrios Kyrtzidis · 13 years ago
  87. e0047b1 Don't add type names for enums; they're never used in LLVM IR. by Anders Carlsson · 13 years ago
  88. 42f681b fix a crash on code that uses the result value of __builtin___memcpy_chk. by Chris Lattner · 13 years ago
  89. a10ae7b Remove __builtin_ia32_loadup[sd] since clang can represent the actions natively. by Bill Wendling · 13 years ago
  90. ffcd985 When translating a Clang source range into a libclang source range, by Douglas Gregor · 13 years ago
  91. 285dc65 PTX: Add PTX intrinsics as builtins and add ptx32 and ptx64 as valid architectures for triples, e.g. ptx32-unknown-unknown by Justin Holewinski · 13 years ago
  92. cbec959 Improve test case from prior commit ever so slightly by Douglas Gregor · 13 years ago
  93. 109ec1b Fix a crash-on-invalid involving non-identifier names in a member by Douglas Gregor · 13 years ago
  94. 22ce41d Give invalid tag types 8-bit size and alignment, rather than 1-bit by Douglas Gregor · 13 years ago
  95. b665b86 Eliminate an uninteresting assertion; invalid code involving by Douglas Gregor · 13 years ago
  96. f787002 Rename 'CXTUMemoryUsage…' to 'CXTUResourceUsage…'. by Ted Kremenek · 13 years ago
  97. 85b1c7c Use S.str() to force a flush. by Fariborz Jahanian · 13 years ago
  98. 32c8cb6 Driver: Suppress some additional warnings with -Qunused-arguments. by Daniel Dunbar · 13 years ago
  99. 750ea61 Be sure to flush raw_string_ostream objects in the Objective-C by Douglas Gregor · 13 years ago
  100. e23ac65 Teach SourceManager::getSLocEntry() that it can fail due to problems by Douglas Gregor · 13 years ago