- 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
- 87a1e19 Implement C++0x [lex.pptoken]p3's handling of <::. by Richard Smith · 14 years ago
- 8a9013d Parse an '@' in an Objective-C++ class member specification, by Douglas Gregor · 14 years ago
- 5bbcdbf Chained PCH: Remember when additional specializations are added to a function template from a previous PCH. Fixes the only crasher when using massive chains on Clang's Sema component. We still have some incomplete codegen there. by Sebastian Redl · 14 years ago
- 0d8dc46 When creating an implicit member expression through a qualified-id, check that the class by Argyrios Kyrtzidis · 14 years ago
- b8fc45f In C++, when initializing an array from a pascal string, it's OK if the array by Anders Carlsson · 14 years ago
- ddd7a3d Rename test. by Anders Carlsson · 14 years ago
- a89344d Add -no-canonical-prefixes to tests which assert on the name of the by Chandler Carruth · 14 years ago
- 6027461 Issue the 2nd fixit even if fix-it hint is supressed. // rdar://9091893 by Fariborz Jahanian · 14 years ago
- 81ab3cf No fixit hint for builtin expressions which are by Fariborz Jahanian · 14 years ago
- 9b064d8 Removing the unaligned load tests from builtins-x86.c since they're generated by a regular 'load' now. by Bill Wendling · 14 years ago
- 8668494 Teach -Wuninitialized about C++'s typeid expression, including both the by Chandler Carruth · 14 years ago
- 6943e9b In Microsoft mode, within class scope, if a CXXScopeSpec's type is equal to the type of one of the base classes then downgrade the missing typename error to a warning. Up to now this is the only case I found where MSVC doesn't require "typename" at class scope. Really strange! by Francois Pichet · 14 years ago
- b8f17ab Redeclaration of 'self' should be flagged in by Fariborz Jahanian · 14 years ago
- f7e903d IRgen/Obj-C: Emit CFStrings and NSStrings with the alignment of the char type, by Daniel Dunbar · 14 years ago
- 6591271 We can't emit an aggregate cast as its sub-expression in general just by John McCall · 14 years ago
- 9281efe Teach VariadicMethodTypeChecker to not crash when processing methods declared in protocols. by Ted Kremenek · 14 years ago
- 82cfc68 ArrayBoundCheckerV2: don't arbitrarily warn about indexing before the 0-index of a symbolic region. In many cases that isn't really the base offset. by Ted Kremenek · 14 years ago
- 318dd92 This patch adds modeling of strcmp() to the CString checker. Validates inputs are not NULL and are real C strings, then does the comparison and binds the proper return value. Unit tests included. by Lenny Maiorani · 14 years ago
- 627788c Fix a regression where the initializer implements by Fariborz Jahanian · 14 years ago
- df1550f Fix AST serialization of reference-to-reference types. This previously caused by Richard Smith · 14 years ago
- 9d5d308 static analyzer: invalidate by-ref arguments passed to constructors in a 'new' expression. by Ted Kremenek · 14 years ago
- 3bab50b Fix bug in SimpleSValBuilder where '--' pointer arithmetic was treated like '++' pointer arithmetic. by Ted Kremenek · 14 years ago
- ec3310a Don't suggest dynamic_cast or typeid as code completion results when by Douglas Gregor · 14 years ago
- 99ace16 Template static data members can have weak_odr linkage, not just by John McCall · 14 years ago
- 1d1a679 Whoops. by John McCall · 14 years ago