- ce8827a It is illegal to derefrercne to an interface in objc's non-fragile ABI. by Fariborz Jahanian · 16 years ago
- 72f6d67 In CXXBaseOrMemberInitializer, don't confuse CtorTocall with by Douglas Gregor · 16 years ago
- b633c4e Add a CK_FunctionToPointerDecay cast kind. by Anders Carlsson · 16 years ago
- 61481da Add DeclContext::Equals to compare declaration contexts based on their primary context. Use this instead of pointer comparisons by Douglas Gregor · 16 years ago
- b7cd17c Tweak comment based on Daniel's recently added '-emit-ast' option. by Steve Naroff · 16 years ago
- ac25503 "The attached patch moves AttributeList::addAttributeList outside the by Douglas Gregor · 16 years ago
- 5915fbf Add driver support for -emit-ast and AST compilation steps. by Daniel Dunbar · 16 years ago
- 35f153f Tip-toe around strict-aliasing violation. Fixes PR4061. by Douglas Gregor · 16 years ago
- 2b8ee6c Add explicit "blind" client data to callback function (since we aren't using blocks). by Steve Naroff · 16 years ago
- d8b285f Don't assert when instantiating member references to fields in anonymous structs. by Anders Carlsson · 16 years ago
- c4bf26f Preliminary AST representation and semantic analysis for by Douglas Gregor · 16 years ago
- 83f6faf Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate by Douglas Gregor · 16 years ago
- ab88d97 Fix bug 4784 and allow friend declarations to properly extend by John McCall · 16 years ago
- 0979c80 Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will by Douglas Gregor · 16 years ago
- f328a28 Add parsing for references to member function templates with explicit by Douglas Gregor · 16 years ago
- 9ac6f62 PR4836, part 1: add Sema support for __builtin_isnan and friends; they by Eli Friedman · 16 years ago
- a6f0f9d Support explicit C++ member operator syntax, from James Porter! by Douglas Gregor · 16 years ago
- 8a5a9aa Updated GNU runtime non-fragile ABI. by David Chisnall · 16 years ago
- 2d4d629 Implement source/line/column hooks. by Steve Naroff · 16 years ago
- 89922f8 More fleshing out the C-based indexing API (under construction). by Steve Naroff · 16 years ago
- 639bfc7 Improve missing error messages as suggested by Doug. by Anders Carlsson · 16 years ago
- f4d84b6 Improve diagnostics for missing members. This renames the err_typecheck_no_member to err_typecheck_no_member_deprecated. The idea is that err_typecheck_no_member_deprecated should be phased out and any call sites that reference it should call DiagnoseMissingMember instead. by Anders Carlsson · 16 years ago
- 19a97e2 Fix TypeLoc::operator bool(). by Argyrios Kyrtzidis · 16 years ago
- 595adc1 Set the access specifier for using decls. by Anders Carlsson · 16 years ago
- 0d8df78 Improve instantiation of UnresolvedUsingDecls. by Anders Carlsson · 16 years ago
- d933a01 Get rid of mostly-unused, buggy method. by Eli Friedman · 16 years ago
- 52a575a Fix the breakage by handling indirect instantiations. This would be much by John McCall · 16 years ago
- 8c57a66 Store the SourceLocation of right parentheses in member initializers. Patch by Anders Johnsen! by Anders Carlsson · 16 years ago
- 7fe5d72 path to ir-gen 12.3.1 Conversion by constructor by Fariborz Jahanian · 16 years ago
- faccd72 Fix this for real. by Anders Carlsson · 16 years ago
- 5039819 Lot's of little changes to get the C-based indexing API going... by Steve Naroff · 16 years ago
- 0dde18e Instantiate unresolved using declarations. by Anders Carlsson · 16 years ago
- 7e8f818 Add CX prefix to Cursor and move a comment. by Steve Naroff · 16 years ago
- 02cace7 Omnibus friend decl refactoring. Instead of cloning AST classes for friend by John McCall · 16 years ago
- 550b14b Create UnresolvedUsingDecls. by Anders Carlsson · 16 years ago
- 665b49c Check in UnresolvedUsingDecl. by Anders Carlsson · 16 years ago
- abd46e1 Use SymbolicRegion instead of CodeTextRegion for symbolic function by Ted Kremenek · 16 years ago
- 73b39cf More work on using declarations. by Anders Carlsson · 16 years ago
- cf9f921 Many improvements to using declarations. by Anders Carlsson · 16 years ago
- dd46ade Accept and ignore a few more -Wflags. by Chris Lattner · 16 years ago
- 8a5ae24 When looking for overloaded member operators, make sure to instantiate by Douglas Gregor · 16 years ago
- 8e02934 Rename 'bindExpr' to 'BindExpr'. by Ted Kremenek · 16 years ago
- 6d2c657 Move the AnalysisContext* from GRState to Environment. by Ted Kremenek · 16 years ago
- 51ac7d4 Add __builtin_memchr (used by GNU libstdc++). by Eli Friedman · 16 years ago
- 600866c Fill in Index.h header file and add stubs to implementation file. by Steve Naroff · 16 years ago
- cbdebdd PR4800: Implement -Wpointer-arith. I think this is the correct behavior by Eli Friedman · 16 years ago
- d60e105 Implement instantiation of the declarations of member function by Douglas Gregor · 16 years ago
- 1d8bdd3 Remove unused utility methods of GRStmtNodeBuilder. by Zhongxing Xu · 16 years ago
- 99330ca Remove unused utility methods of GRStmtNodeBuilder. by Zhongxing Xu · 16 years ago
- cf78271 restore indentation by Gabor Greif · 16 years ago
- 156c413 add missing header by Gabor Greif · 16 years ago
- c999496 Remove a unused member variable. Instead query the option from AnalysisManager. by Zhongxing Xu · 16 years ago
- f5afb5e iterator.h is no more. Be standards compliant. by Gabor Greif · 16 years ago
- 6dd38da When checking whether one declaration context encloses another, make sure to look at the primary contexts. Thanks to Eli for the test case by Douglas Gregor · 16 years ago
- 2a16a13 Stub out an error so we don't crash. by Eli Friedman · 16 years ago
- bb60a50 In ActOnCXXTypeConstructExpr, check that the type is complete and non-abstract before creating any expressions. This assures that any templates are instantiated if necessary. by Anders Carlsson · 16 years ago
- 0fb0bc4 Simplify 'Environment' to contain only one map from 'const Stmt*' to SVals, greatly simplifying the logic of the analyzer in many places. We now only distinguish between block-level expressions and subexpressions in Environment::RemoveDeadBindings and GRState pretty-printing. by Ted Kremenek · 16 years ago
- 0e88b16 Cleanups. by Mike Stump · 16 years ago
- a6ec7ad New RequireNonAbstractType function. by Anders Carlsson · 16 years ago
- bd4c4ae When a member reference expression includes a qualifier on the member by Douglas Gregor · 16 years ago
- d2fa566 Add initial boilerplate for CIndex, a shared library that will vend high-level by Ted Kremenek · 16 years ago
- 022fb28 The PartialDiagnostic constructor doesn't need to be explicit. by Anders Carlsson · 16 years ago
- 1feade8 Regularize the case and sort. by Mike Stump · 16 years ago
- 21c2e20 More improvements to PartialDiagnostic. by Anders Carlsson · 16 years ago
- 83ddad3 Implement support for C++ direct initializers that involve dependent by Douglas Gregor · 16 years ago
- 58d3f1a Fixes a comment. by Fariborz Jahanian · 16 years ago
- 9099ff0 AST for conversion by conversion functions. WIP. by Fariborz Jahanian · 16 years ago
- 2cf738f More support for pseudo dtors. by Anders Carlsson · 16 years ago
- e9f4208 update to CXXFunctionalCastExpr to support ir-gen for by Fariborz Jahanian · 16 years ago
- 42c39f3 When we know that we are parsing a class-name, implicitly construct a by Douglas Gregor · 16 years ago
- 3aa4ca4 Address some of Doug's comments. by Anders Carlsson · 16 years ago
- b215394 Add the partially implemented PartialDiagnostic class. by Anders Carlsson · 16 years ago
- 47e1f7c Source location information for ? and : in a ConditionalOperator, from Enea Zaffanella by Douglas Gregor · 16 years ago
- 91a2886 Fix bug in __extension__ handling for declarations, from Abramo by Douglas Gregor · 16 years ago
- dacd434 Improve diagnostics and recovery when the nested-name-specifier of a by Douglas Gregor · 16 years ago
- ec77387 Parsing of pseudo-destructors. by Anders Carlsson · 16 years ago
- 495c35d Improve support for out-of-line definitions of nested templates and by Douglas Gregor · 16 years ago
- 1894dce Fix crash reported in <rdar://problem/7124210> by "back-porting" some of the by Ted Kremenek · 16 years ago
- cf5c19b Changed condition of an assert. by Fariborz Jahanian · 16 years ago
- ff4264d Move logic of GRExprEngine::EvalBinOp to SValuator::EvalBinOp. by Ted Kremenek · 16 years ago
- 8b55ce7 Sanity checking for statement reference counts. Thanks for the suggestion, Fariborz by Douglas Gregor · 16 years ago
- 5032ffe Remove CodeDecl and CFG from GRExprEngine and GRStateManager. by Zhongxing Xu · 16 years ago
- cc02553 Remove Decl and CFG from ExplodedGraph. This leads to a series small changes. by Zhongxing Xu · 16 years ago
- 66e78e2 Add Decl getter/setters for uninstantiated default arguments for function parameters. by Anders Carlsson · 16 years ago
- c305833 Keep track of the template parameter depth properly when we have by Douglas Gregor · 16 years ago
- 0878007 ConstraintManager::AssumeDual now accepts a 'DefinedSVal' instead of 'SVal' for by Ted Kremenek · 16 years ago
- c3a9415 Introduce 'DefinedSVal', an intermediate parent class between Loc/NonLoc and by Ted Kremenek · 16 years ago
- 018d8e0 normalize the CharacterLiteral::getLocation method name, patch by Chris Lattner · 16 years ago
- 5842ba9 Try to complete a type before looking for conversion functions within by Douglas Gregor · 16 years ago
- 55cc2ed Remove TargetInfo::getTargetPrefix(). by Daniel Dunbar · 16 years ago
- 1752ee4 Switch TargetInfo to store an llvm::Triple. by Daniel Dunbar · 16 years ago
- 0fa0daa prune #includes. by Chris Lattner · 16 years ago
- 3075e76 Catch a few more cases of illegal comparisons. by Eli Friedman · 16 years ago
- 06c0f5b Eli points out that we really must diagnose "void* > 0" as an extension. by Chris Lattner · 16 years ago
- 27a5b9b Add CK_NullToMemberPointer and CK_BaseToDerivedMemberPointer cast kinds. Make -ast-dump print out the cast kinds of cast expressions. by Anders Carlsson · 16 years ago
- 92f5822 Add a -fno-elide-constructors option to clang-cc. by Anders Carlsson · 16 years ago
- c47285c Removed couple of FIXME comments. by Fariborz Jahanian · 16 years ago
- 92eaacb Removed -Wundeclared-selector and -Wreadonly-setter-attrs from by Fariborz Jahanian · 16 years ago
- e7925a0 Second half of, clang, AuroraUX toolchain support. by Edward O'Callaghan · 16 years ago
- d83d040 Implement delayed parsing for member function templates. Fixes PR4608. by Douglas Gregor · 16 years ago