1. 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
  2. 7c0837f Fix adding an anonymous namespace in a chained PCH to a namespace from a previous PCH. by Sebastian Redl · 13 years ago
  3. 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
  4. 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
  5. 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
  6. 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
  7. a5d318a Downgrade unnecessary "typename" from error to warning in Microsoft mode. by Francois Pichet · 13 years ago
  8. c0a4559 GCC seems to create address-of expression manglings when passing *any* by John McCall · 13 years ago
  9. a0ce15c Update the mangler for some of the "new" unresolved-name manglings. by John McCall · 13 years ago
  10. 312eadb Implement a new identifier-classification scheme where Sema by Douglas Gregor · 13 years ago
  11. 1b60052 The ABI settled on mangling float literals with lowercase hex dumps. by John McCall · 13 years ago
  12. 9b6347c Implement most of the remaining logic in __is_literal type trait. This by Chandler Carruth · 13 years ago
  13. 3840281 Add support for '__is_literal_type' spelling of the existing by Chandler Carruth · 13 years ago
  14. 4d6e5a2 Begin tracking trivialness of move constructors and move assignment by Chandler Carruth · 13 years ago
  15. c69f636 Flesh out these tests just a tad more. This provides targeted by Chandler Carruth · 13 years ago
  16. 43a56a0 Test POD and trivial type traits given a class derived from a generic by Chandler Carruth · 13 years ago
  17. 34eaaa5 Use a more precise name for some of the types here, and re-group several by Chandler Carruth · 13 years ago
  18. e567e83 Mechanical change moving all of the test statements away from a pattern by Chandler Carruth · 13 years ago
  19. f8c247d Move all of the logic for __DEPRECATED to the driver based on comments by Chandler Carruth · 13 years ago
  20. 89ebaed "note" location of forward class used as receiver of by Fariborz Jahanian · 13 years ago
  21. b7e9589 Implement basic __is_trivial type-trait support, enough to close PR9472. by Chandler Carruth · 13 years ago
  22. 1cfe3c3 Fix Clang's __DEPRECATED define to be controled by -Wdeprecated. This by Chandler Carruth · 13 years ago
  23. f3babb9 GCC overloads -Wwrite-strings just to make it extra confusing. While it by Chandler Carruth · 13 years ago
  24. 50465d1 There were some frustrating problems with the implementation of by Chandler Carruth · 13 years ago
  25. 81ef3e6 Diagnose C++ abstract parameters for Objective-C methods. by John McCall · 13 years ago
  26. b6b2b18 Fix an assertion when code-completing, rdar://9288730 & http://llvm.org/PR9728. by Argyrios Kyrtzidis · 13 years ago
  27. 120bf32 Tie debug information for method declaration with debug information for method definition. by Devang Patel · 13 years ago
  28. 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
  29. d4a0caf Correctly emit a diagnostic for multiple templated function definitions in -flate-template-parsing mode. by Francois Pichet · 13 years ago
  30. b464a5b reinterpret_cast to reference of a bit-field is not allowed. by Argyrios Kyrtzidis · 13 years ago
  31. 7884403 At the end of the translation unit, defining a vtable can introduce by Douglas Gregor · 13 years ago
  32. 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
  33. 64089ce Fixes an instance method meta-data generation bug in by Fariborz Jahanian · 13 years ago
  34. 48f41ea Workaround buildbot failure by hacking up this test to emit llvm IR. by Bob Wilson · 13 years ago
  35. a61aedc For -Wlogical-op-parentheses, point at '&&', not '||'. Fixes rdar://9125333. by Argyrios Kyrtzidis · 13 years ago
  36. cfe38c4 I concur with DPG here. This does indeed apply in 0x mode. Added test by Chandler Carruth · 13 years ago
  37. b65abda Don't enter a qualified scope for an invalid decl. by Argyrios Kyrtzidis · 13 years ago
  38. e970c60 Add static analyzer support for C++'0X nullptr. Patch by Jim Goodnow II. by Ted Kremenek · 13 years ago
  39. e36bca6 In IsUserDefinedConversion try to recover from RequireCompleteType returning true. by Argyrios Kyrtzidis · 13 years ago
  40. 0259c3a PTX: Add default PTX calling conventions by Justin Holewinski · 13 years ago
  41. 2e510a0 Downgrade error "static declaration of 'foo' follows non-static declaration" to a warning in Microsoft mode. by Francois Pichet · 13 years ago
  42. 97fb6f3 Add a testcase for svn r129964 (Neon load/store intrinsic alignments). by Bob Wilson · 13 years ago
  43. 34f52d1 Fix crashing rdar://9122854 & http://llvm.org/PR9461. by Argyrios Kyrtzidis · 13 years ago
  44. 144bc08 Don't hide #warnings in a system header, same as gcc. Fixes rdar://8495837. by Argyrios Kyrtzidis · 13 years ago
  45. 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
  46. 8a3a7f3 Driver/Darwin: Allow OS X deployment targets like 10.4.11, even though they by Daniel Dunbar · 13 years ago
  47. 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
  48. 13d7dc0 Have #pragma message not turn into error by -Werror, by default. Fixes rdar://9308989. by Argyrios Kyrtzidis · 13 years ago
  49. 1cfeefd PR9772: Fix the definition of WINT_MIN and WINT_MAX on Linux -ffreestanding. by Eli Friedman · 13 years ago
  50. 67a5773 The 0.98 revision of the x86-64 ABI clarified a lot of things, some by John McCall · 13 years ago
  51. 4423ac0 For by Argyrios Kyrtzidis · 13 years ago
  52. 42f681b fix a crash on code that uses the result value of __builtin___memcpy_chk. by Chris Lattner · 13 years ago
  53. ffcd985 When translating a Clang source range into a libclang source range, by Douglas Gregor · 13 years ago
  54. 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
  55. cbec959 Improve test case from prior commit ever so slightly by Douglas Gregor · 13 years ago
  56. 109ec1b Fix a crash-on-invalid involving non-identifier names in a member by Douglas Gregor · 13 years ago
  57. a4ff648 TWEAK by Daniel Dunbar · 13 years ago
  58. 729f38e Driver/Darwin: Switch to using new style triples. by Daniel Dunbar · 13 years ago
  59. e106a0b Avoid superfluous warning after an error is detcted and reported. by Fariborz Jahanian · 13 years ago
  60. 6b6b42a We regard a function as 'unused' from the codegen perspective, so our warnings diverge from by Argyrios Kyrtzidis · 13 years ago
  61. 1c860d5 Add a new expression classification, CL_AddressableVoid by Peter Collingbourne · 13 years ago
  62. f05982b Make the VariadicMethodTypeChecker accept block pointers as Objective-C pointers. Fixes PR9746. by Anders Carlsson · 13 years ago
  63. ba80af4 Fix line endings by Matt Beaumont-Gay · 13 years ago
  64. 7c2bdcb Fix a bug in calculation of composite type by Fariborz Jahanian · 13 years ago
  65. b403d6d Fix PR9741. The implicit declarations created for range-based for loops weren't being added to the DeclContext (nor were they being marked as implicit). Also, the declarations were being emitted in the wrong order when building the CFG. by Richard Smith · 13 years ago
  66. e842605 When providing code completions of ivar names for a property by Douglas Gregor · 13 years ago
  67. aa490cb When producing code completion results for the Objective-C property by Douglas Gregor · 13 years ago
  68. 3a01693 Put a typeid test in its own namespace. by Anders Carlsson · 13 years ago
  69. 4210486 Fix a miscompilation I introduced in r129652, thanks for Eli for tracking by Chris Lattner · 13 years ago
  70. f54d81f Use the right type name. by Anders Carlsson · 13 years ago
  71. eb9d81d When laying out bases in, always try the "base subobject" LLVM type. If it by Anders Carlsson · 13 years ago
  72. 1741d7b Cleanup tests, no functionality change. by Anders Carlsson · 13 years ago
  73. bbc1c2e when assertions are disabled, labels go away. Hopefully fixes the windows build. by Chris Lattner · 13 years ago
  74. b11f919 implement rdar://9289524 - case followed immediately by break results in empty IR block, by Chris Lattner · 13 years ago
  75. a5e5e0f fold memcpy/set/move_chk to llvm.memcpy/set/move when the sizes by Chris Lattner · 13 years ago
  76. c6bea67 fix rdar://9289603 - clang should fold trivial ?: for enums as well as integer constants into select at -O0 by Chris Lattner · 13 years ago
  77. b6385e8 Modify test for 32 and 64 bit. by Tanya Lattner · 13 years ago
  78. fa936d8 Emit debug info for Objective-C properties. by Devang Patel · 13 years ago
  79. b92ae0e Fix bug in vector initializer when initializing a vector with another vector. by Tanya Lattner · 13 years ago
  80. 5272adf Enforce nonnull __attribute__ on Objective-C method calls. // rdar://9287695 by Fariborz Jahanian · 13 years ago
  81. 7d2b8c1 Initial work to improve documentation for Clang's diagnostics, from Matthieu Monrocq by Douglas Gregor · 13 years ago
  82. f9af524 For the purposes of overload resolution, consider a conversion from an by Douglas Gregor · 13 years ago
  83. 5666d36 Forbid the use of C++ new/delete to allocate/free objects within an by Douglas Gregor · 13 years ago
  84. ccad3db Fixes a crash when generating dependency file stuff by Fariborz Jahanian · 13 years ago
  85. d4c5f84 Implement appropriate semantics for C++ casting and conversion when by Douglas Gregor · 13 years ago
  86. eefa76e Allow shadowin of 'self' in objc methods in by Fariborz Jahanian · 13 years ago
  87. a391a46 Add __has_feature(cxx_range_for) check for C++11 range-based for loop. by Richard Smith · 13 years ago
  88. 8b36a9e Add 3DNow! Intrinsics. by Michael J. Spencer · 13 years ago
  89. 162e1c1 Support for C++11 (non-template) alias declarations. by Richard Smith · 13 years ago
  90. 8b8b84d Apply NAKAMURA Takumi's workaround to fix thses tests on -Asserts build. The labels there are numbered, not named, and numbered labels are formatted differently. by Richard Smith · 13 years ago
  91. 831efae Improve diagnostics on GNU attributes by warning about attributes that should have no arguments or parameters. Patch by Michael Han! by Ted Kremenek · 13 years ago
  92. fc8f0e1 fix a bunch of comment typos found by codespell. Patch by by Chris Lattner · 13 years ago
  93. c6eb44b C1X: implement static asserts by Peter Collingbourne · 13 years ago
  94. f111d93 C1X: implement generic selections by Peter Collingbourne · 13 years ago
  95. 87f1064 If the declaration of a C++ member function with an inline definition by Douglas Gregor · 13 years ago
  96. ad762fc Add support for C++0x's range-based for loops, as specified by the C++11 draft standard (N3291). by Richard Smith · 13 years ago
  97. ea698b3 Detect when the string "<::" is found in code after a cast or template name and is interpreted as "[:" because of the digraph "<:". When found, give an error with a fix-it to add whitespace between the "<" and "::". by Richard Smith · 13 years ago
  98. 5da3c08 Match pointer of compatible vection types. // rdar://9208404 by Fariborz Jahanian · 13 years ago
  99. 3e64d56 When determining the "usage" type of a declaration for the purposes of code by Douglas Gregor · 13 years ago
  100. 414d896 Implement ARM pcs attribute. Basically it's another way of calling convention selection (AAPCS or by Anton Korobeynikov · 13 years ago