- b621766 Remember declaration scope qualifiers in the AST. Imposes no memory overhead by John McCall · 15 years ago
- 961b167 Fix PR6562. If a type is dependent, we don't know if it will have implicit by Rafael Espindola · 15 years ago
- 1935754 Use SmallString instead of SmallVector by Kovarththanan Rajaratnam · 15 years ago
- 3352406 Allow users to set CPPFLAGS and CXXFLAGS on the make command line. by Jeffrey Yasskin · 15 years ago
- 4c9f709 Use llvm::SmallVector instead of std::vector. by Ted Kremenek · 15 years ago
- cffbc78 Preserve the inherited-default-argument bit through instantiation. by John McCall · 15 years ago
- bf73b35 Remember whether a ParmVarDecl was spelled with a default argument or by John McCall · 15 years ago
- 0faede6 Improve the unused-value check to look into comma expressions and filter out by John McCall · 15 years ago
- e3d67bc Split Sema::ActOnProperty() into two recursive functions to clearly separate by Ted Kremenek · 15 years ago
- d60e22e Implement basic support for friend types and functions in non-dependent by John McCall · 15 years ago
- 2d2f936 Fix 80 col violations. by Ted Kremenek · 15 years ago
- 28685ab Move 'ActOn' methods to the beginning of the file by Ted Kremenek · 15 years ago
- 34836f2 Update CMake build. by Ted Kremenek · 15 years ago
- 9d64c15 Split Sema logic for ObjC @property and @synthesize into a separate file. by Ted Kremenek · 15 years ago
- 7d2aa11 For ivars created using @synthesize, set their DeclContext to be by Ted Kremenek · 15 years ago
- d1b47bf Warn about comparing an unsigned expression with 0 in tautological ways. by John McCall · 15 years ago
- 80639de Implement -Wmissing-field-initializers. Patch by mikem! by John McCall · 15 years ago
- 069ace5 Fix a self-host problem caused by this over-eager assertion. I'm not sure by John McCall · 15 years ago
- 21ef0fa Maintain type source information for functions through template by John McCall · 15 years ago
- 92b7f70 Split C++ friend declarations into their own header/implementation file. by John McCall · 15 years ago
- dd8f569 Statement expressions can be used in global- or namespace-scoped blocks by Douglas Gregor · 15 years ago
- 3cb0ebd Create a new InjectedClassNameType to represent bare-word references to the by John McCall · 15 years ago
- bbf58bb Delay codegen of vtables when handling implicit instantiations. by Rafael Espindola · 15 years ago
- c2350e5 Extend ObjCMessageExpr for class method sends with the source location by Douglas Gregor · 15 years ago
- 4bc1cb6 Keep track of type source information in the return type of an by Douglas Gregor · 15 years ago
- a48b284 Remove unused headers. by Duncan Sands · 15 years ago
- 5abbd60 Make a note for the C++0x future, when we'll have to revisit the jump-diagnostics handling for variables without initializers by Douglas Gregor · 15 years ago
- 516a6bc In C++98/03, an uninitialized variable that has POD class type will be by Douglas Gregor · 15 years ago
- a276291 Downgrade errors when trying to catch a pointer or reference to by Douglas Gregor · 15 years ago
- a50ce32 Robustify callers that rebuild typename type nodes again NULL return by Douglas Gregor · 15 years ago
- 4ce46c2 Perform overload resolution when static_cast'ing from a by Douglas Gregor · 15 years ago
- a1a9f03 Reference binding via user-defined conversion can compute a binding by Douglas Gregor · 15 years ago
- d6a9324 Fix for PR6294: we should only delay recording nested dynamic classes if they by Eli Friedman · 15 years ago
- 1dcd061 Fix 80 col violation. by Tanya Lattner · 15 years ago
- 47f164e Fix indentation, use string directly instead of StringRef. by Tanya Lattner · 15 years ago
- 20df668 Fix some weird patch issue. by Tanya Lattner · 15 years ago
- 1e1d396 Implement missing-braces warning and add a test case. by Tanya Lattner · 15 years ago
- dbf217a Allow use of byref (__block attributed) arrays inside by Fariborz Jahanian · 15 years ago
- 6d18289 When declaring a catch block in C++, make sure that the type being by Douglas Gregor · 15 years ago
- a422864 Patch to build qualifier on objective-c pointer types. Fixes radar 7626768. by Fariborz Jahanian · 15 years ago
- 5fccd36 Reinstate r97674 with a fix for the assertion that was firing in <list> by Douglas Gregor · 15 years ago
- a7cb22d Revert r97674; it's causing failures by Douglas Gregor · 15 years ago
- b29b37d Implement disambiguation of base class members via a by Douglas Gregor · 15 years ago
- e97c32f Suppress implicit member redeclarations arising from explicit instantiation by John McCall · 15 years ago
- 7b9a5aa During codegen assert that any copy assignment, destructor or constructor that by Rafael Espindola · 15 years ago
- 9b9edd6 Diagnose the declaration of enum templates. Also, be a bit more by Douglas Gregor · 15 years ago
- 91be6f5 Use CXXTemporaryObjectExpr for explicitly-constructed temporaries. We by Douglas Gregor · 15 years ago
- 6b98b2e Unify initializer-instantiation code for variable declarations and by Douglas Gregor · 15 years ago
- ad5e738 Split out types that are non-canonical unless dependent as their own by John McCall · 15 years ago
- 9ea9bdb Keep an explicit stack of function and block scopes, each element of by Douglas Gregor · 15 years ago
- 7bf3600 Fix the lookup of names used in a friend declaration to not attempt to by Chandler Carruth · 15 years ago
- e679497 fix PR5933: don't warn about unused variables if a function has other errors in it. by Chris Lattner · 15 years ago
- 6d97e5e Implement jump checking for initialized c++ variables, implementing by Chris Lattner · 15 years ago
- 076ceb0 Start detangling the BlockSemaInfo/Sema mess. No functionality change. by Douglas Gregor · 15 years ago
- 449d0a8 When looking for a redeclaration of a static variable, only look for redeclarations. Fixes PR6449 by Douglas Gregor · 15 years ago
- 96084f1 When instantiating a function-scoped enum, make sure that it and its by Douglas Gregor · 15 years ago
- 0022554 Robustify instantiation of templates when there are errors in the by Douglas Gregor · 15 years ago
- aac571c Finish pushing source-location information though TreeTransform's by Douglas Gregor · 15 years ago
- 7c1e98f When looking for the instantiated declaration that corresponds to a by Douglas Gregor · 15 years ago
- f9f627d Don't warn about case-value conversions from a negative value to a by Douglas Gregor · 15 years ago
- a9bff30 Warn about the deprecated string literal -> char* conversion. Fixes PR6428. by Douglas Gregor · 15 years ago
- ddeea56 Add an overload of Preprocessor::getSpelling which takes a SmallVector and by Benjamin Kramer · 15 years ago
- e3fc547 Fix crasher caused by setting a bit in a possibly empty bitvector while by Ted Kremenek · 15 years ago
- efaff19 For printf format string checking, add support for positional format strings. by Ted Kremenek · 15 years ago
- 5fe8c04 Skip dependent virtual base classes; fixes PR6413. by Douglas Gregor · 15 years ago
- 2a0d757 At sabre's request, drop the FP bounds diagnostics down to warnings and file by John McCall · 15 years ago
- 7f70dc8 For printf format string checking, move the tracking of the data argument index out of by Ted Kremenek · 15 years ago
- dc0a11c An explicit specialization is allowed following an explicit by Douglas Gregor · 15 years ago
- 6d90870 Implement semantic analysis for C++ [expr.new]p18-20, which describe by Douglas Gregor · 15 years ago
- 692f85c Commit Eli's fix for implicit conversions to array type. Fixes PR6264. by Douglas Gregor · 15 years ago
- 1af7451 Make sure to mark constructors, operator new, and operator delete as by Douglas Gregor · 15 years ago
- c845aad When we decide to re-use an existing CXXConstructExpr node, make sure by Douglas Gregor · 15 years ago
- b2cb1cb When computing the composite pointer type for relational comparisons, by Douglas Gregor · 15 years ago
- 9e23932 Allow us to compare derived-to-base conversions between a reference by Douglas Gregor · 15 years ago
- 333de06 Don't try to finalize an ill-formed variable or one whose class type is ill-formed. Fixes PR6421 by Douglas Gregor · 15 years ago
- bf2ca2f Add "template" keyword at strategic position to fix compilation using g++ v3.4. by Gabor Greif · 15 years ago
- 3a81337 When comparing two method overload candidates during overload diagnostics, by John McCall · 15 years ago
- 78bd771 Fix a really trivial crasher and begin fleshing out one of the namespace test by Chandler Carruth · 15 years ago
- 23a370f Add a new conversion rank to classify conversions between complex and scalar by Chandler Carruth · 15 years ago
- edc9050 Restore the invariant that a nested-name-specifier can only contain by Douglas Gregor · 15 years ago
- 2ec93a8 Allow __attribute__((unused)) to be applied to ObjC ivars. by Ted Kremenek · 15 years ago
- f316a1d Remove some oogly code made dead by the pseudo-destructor instantiation changes. by Douglas Gregor · 15 years ago
- a2e7dd2 Use CXXPseudoDestructorExpr as the stored representation for dependent by Douglas Gregor · 15 years ago
- b1bdc62 Catch more uses of uninitialized implicit conversion sequences. by John McCall · 15 years ago
- fce46ee Keep track of the location of the '~' in a pseudo-destructor expression. by Douglas Gregor · 15 years ago
- 26d4ac9 Retain complete source information for the type after the '~' in a by Douglas Gregor · 15 years ago
- b4a418f Make sure that we have type source information for the scope type of a by Douglas Gregor · 15 years ago
- b57fb49 Split ActOnPseudoDestructorExpr into the part that interprets the by Douglas Gregor · 15 years ago
- e0601ea Retain source information for the "type-name ::" in a by Douglas Gregor · 15 years ago
- 7754908 ActOnPseudoDestructorExpr now performs all semantic analysis for by Douglas Gregor · 15 years ago
- d4dca08 Rework parsing of pseudo-destructor expressions and explicit by Douglas Gregor · 15 years ago
- 328ce34 When we encounter a function-specific attribute in a declaration specifier, by Charles Davis · 15 years ago
- f914b97 More Sema check for ivars in class continuation. by Fariborz Jahanian · 15 years ago
- 11e8ce7 Add support for the weakref attribute. We still produce "alias weak" as llvm-gcc does, but are more strict on what uses of weakref we accept. by Rafael Espindola · 15 years ago
- 09b6897 Fix another crash on invalid code. In this case, handle ObjC categories (with no names) by Ted Kremenek · 15 years ago
- c0cd21d Don't assert on compound assignment operators that operate in FP types when by John McCall · 15 years ago
- 064f7db When comparing two calling conventions after redeclaring a function, compare by Charles Davis · 15 years ago
- 72919a3 Move the rest of the unreachable code analysis from libSema by Ted Kremenek · 15 years ago
- 8de3cc6 Simplify check for basic block with a CXXTryStmt terminator. by Ted Kremenek · 15 years ago
- 3d2eed8 Start moving some of the logic for the unreachable code analysis out of libSema by Ted Kremenek · 15 years ago