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