- 52604ab Slight improvement for extern templates, so that an explicit by Douglas Gregor · 15 years ago
- ed90c4e Fix PR4878 for real. by Anders Carlsson · 15 years ago
- cce6ebc Test commit by Sam Weinig · 15 years ago
- 773f397 Instantiate PredefinedExprs correctly. Patch by Sam Weinig! by Anders Carlsson · 15 years ago
- 0f72856 Don't check use of a member function declaration used if the member function is virtual and the member reference expression doesn't explicitly qualify it. Fixes PR4878. by Anders Carlsson · 15 years ago
- 0aebc81 If a cast expression needs either a conversion function or a constructor to be called, generate implicit child expressions that call them. by Anders Carlsson · 15 years ago
- 1eb4433 Remove tabs, and whitespace cleanups. by Mike Stump · 15 years ago
- 3b6afbb Initial stab at implement dependent member references to member by Douglas Gregor · 15 years ago
- 3a082d8 Vastly improve PredefinedExpr output, both in Sema and CodeGen. Patch by Sam Weinig! by Anders Carlsson · 15 years ago
- 25cae7f Use a separate diagnostic for default function argument expressions. by Anders Carlsson · 15 years ago
- a71d819 Implement AST, semantics, and CodeGen for C++ pseudo-destructor by Douglas Gregor · 15 years ago
- c68afe2 Improve template instantiation for member access expressions that by Douglas Gregor · 15 years ago
- a38c687 Improved handling for dependent, qualified member access expressions, e.g., by Douglas Gregor · 15 years ago
- 16b1037 This patch does the following. by Fariborz Jahanian · 15 years ago
- ce8827a It is illegal to derefrercne to an interface in objc's non-fragile ABI. by Fariborz Jahanian · 15 years ago
- b633c4e Add a CK_FunctionToPointerDecay cast kind. by Anders Carlsson · 15 years ago
- c4bf26f Preliminary AST representation and semantic analysis for by Douglas Gregor · 15 years ago
- 83f6faf Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate by Douglas Gregor · 15 years ago
- 0979c80 Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will by Douglas Gregor · 15 years ago
- f328a28 Add parsing for references to member function templates with explicit by Douglas Gregor · 15 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 · 15 years ago
- 3197659 Patch for code gen. for c-style cast which ends in by Fariborz Jahanian · 15 years ago
- 598da5b CreateDeclRefExprs that point to UnresolvedUsingDecls. by Anders Carlsson · 15 years ago
- d6350ae Implement template instantiation for member class templates. by Douglas Gregor · 15 years ago
- b790661 Bye-bye old RequireCompleteType. by Anders Carlsson · 15 years ago
- d497ba7 Remove the PrintType argument from RequireCompleteType. by Anders Carlsson · 15 years ago
- bd4c4ae When a member reference expression includes a qualifier on the member by Douglas Gregor · 15 years ago
- e9f4208 update to CXXFunctionalCastExpr to support ir-gen for by Fariborz Jahanian · 15 years ago
- 8f28f99 Add Sema::BuildMemberReferenceExpr and have Sema::ActOnMemberReferenceExpr call it. by Anders Carlsson · 15 years ago
- 47e1f7c Source location information for ? and : in a ConditionalOperator, from Enea Zaffanella by Douglas Gregor · 15 years ago
- ec77387 Parsing of pseudo-destructors. by Anders Carlsson · 15 years ago
- ce3ff2b Clarify the difference between substitution and instantiation by renaming by John McCall · 15 years ago
- 56c5e33 Factor building of CXXDefaultArgExpr expressions out into a separate function. by Anders Carlsson · 15 years ago
- 9351c17 Basic support for default argument expressions for function templates. by Anders Carlsson · 15 years ago
- ed961f9 Factor setting default arguments out into SetParamDefaultArgument. by Anders Carlsson · 15 years ago
- 26ba850 Use the right cast kind when comparing null to member pointers. by Anders Carlsson · 15 years ago
- 20b3e99 Implement support for equality comparisons (!=, ==) of member by Douglas Gregor · 15 years ago
- 3075e76 Catch a few more cases of illegal comparisons. by Eli Friedman · 15 years ago
- 06c0f5b Eli points out that we really must diagnose "void* > 0" as an extension. by Chris Lattner · 15 years ago
- 9ec22a3 Type of a ?: expression whose either expression is a built-in 'id' by Fariborz Jahanian · 15 years ago
- 6365e3e tweak some pointer sema checking stuff (which was added to implement PR4175) to by Chris Lattner · 15 years ago
- 6b90686 Implement support for calling member function templates, which involves: by Douglas Gregor · 15 years ago
- 09105f5 Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRefExpr". by Fariborz Jahanian · 15 years ago
- 04e8357 Fix bit-field promotion to be a bit closer to the behavior of gcc. by Eli Friedman · 15 years ago
- a95d757 Make integer promotions work correctly on PIC16 and other platforms by Eli Friedman · 15 years ago
- e866190 Use Sema's LocInfoType to pass and preserve type source info through the Parser. by Argyrios Kyrtzidis · 15 years ago
- 154440e Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. by Fariborz Jahanian · 15 years ago
- 0f43656 Initial patch to support definitions of id and Class from headers in Objective-C code. by David Chisnall · 15 years ago
- ec74c59 Make sure to call MaybeBindToTemporary when creating CallExprs. by Anders Carlsson · 15 years ago
- d406bf0 Move builtin call checking out into a separate function, make CheckFunctionCall and CheckBlockCall return bool instead. No intended functionality change. by Anders Carlsson · 15 years ago
- 199ea95 Don't perform integer promotions on the operand to a cast; this by Eli Friedman · 15 years ago
- f1480ee Make the CXXDefaultArgExpr constructor protected and add a static Create function. by Anders Carlsson · 15 years ago
- 2ef13e5 Take 2 on AltiVec-style vector initializers. by Nate Begeman · 15 years ago
- 1df5109 Revert r78535, it is causing a number of failures to build projects. by Daniel Dunbar · 15 years ago
- 25b4fdb AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); by Nate Begeman · 15 years ago
- 8045c73 PR4700 - remove shift by 0 warning by Ryan Flynn · 15 years ago
- 0f44b5a Make sure to diagnose use of declarations in the case where we create an implicit CXXThisExpr. by Anders Carlsson · 15 years ago
- 112a0a8 Add a CK_ArrayToPointerDecay cast kind. by Anders Carlsson · 15 years ago
- 4d8673b Add CK_ToUnion and use it for aggregate expression codegen. by Anders Carlsson · 15 years ago
- cdb6197 More CastKind work. by Anders Carlsson · 15 years ago
- d043968 PR3333: warn when shifting by invalid amount by Ryan Flynn · 15 years ago
- dcee1a1 Implement transformation of nested-name-specifiers within the general by Douglas Gregor · 15 years ago
- fe85ced Support nested-name-specifiers for C++ member access expressions, e.g., by Douglas Gregor · 15 years ago
- ac5fc7c Canonicalize else. by Mike Stump · 15 years ago
- 3503d04 Add CK_DerivedToBase and use it PerformObjectMemberConversion. by Anders Carlsson · 15 years ago
- cdef2b7 Add a CastKind enum to CastExpr. Right now it's not used for much but it will be :) by Anders Carlsson · 15 years ago
- 6217b80 Change uses of: by Ted Kremenek · 15 years ago
- 96e2fa9 Some refactoring of member access for performace sake. Also added a test case. by Fariborz Jahanian · 15 years ago
- f3e53d3 Check accessibility when converting object to the base class. by Fariborz Jahanian · 15 years ago
- 98a541e Patch to provide cast of objects in member access by Fariborz Jahanian · 15 years ago
- d99cbe6 [llvm up] by Douglas Gregor · 15 years ago
- c715e78 Fix <rdar://problem/7100524> regression: "error: incompatible operand types ('void *' and 'NSString *')". by Steve Naroff · 15 years ago
- 99b10be Incorporate feedback from Chris (on r76979). by Steve Naroff · 15 years ago
- ef0cb8e Make functional-style casts emit correct messages, and fix a crash-on-invalid. by Sebastian Redl · 15 years ago
- 1d2154c BlockScopeInfo::hasPrototype was uninitialized. by Daniel Dunbar · 15 years ago
- 5692586 Add noreturn support for blocks. by Mike Stump · 15 years ago
- 9cc11e7 Implement C++ semantics for C-style and functional-style casts. This regresses Clang extension conversions, like vectors, but allows conversions via constructors and conversion operators. by Sebastian Redl · 16 years ago
- 7caa682 Template instantiation for static data members that are defined out-of-line. by Douglas Gregor · 16 years ago
- f242b1b Allow front-end 'isa' access on object's of type 'id'. by Steve Naroff · 16 years ago
- 4084c30 Remove a bunch of FIXME's related to ObjC type checking. by Steve Naroff · 16 years ago
- 6016cb2 Fix test breakage. by Eli Friedman · 16 years ago
- de99a45 Slight code reorganization to allow instantiating post-inc/dec. by Eli Friedman · 16 years ago
- 8e1fab2 Use isa instead of dyn_cast for conditionals. by Mike Stump · 16 years ago
- c6a38a4 Preserve address space information through member accesses, e.g., by Mon P Wang · 16 years ago
- 1cb35dd Remove the ObjCCategoryImpls vector from Sema class. by Argyrios Kyrtzidis · 16 years ago
- 8701877 Remove Sema::LookupObjCImplementation and replace it with just calling ObjCInterfaceDecl::getImplementation(). by Argyrios Kyrtzidis · 16 years ago
- 67ef8ea 5 cleanups to ObjCObjectPointerType work: by Steve Naroff · 16 years ago
- ecd1bae Don't add a SourceLocation for 'self' if it does not actually appears in the source code. by Argyrios Kyrtzidis · 16 years ago
- 35366a6 Per offline discussion with Steve Naroff, add back Type::getAsXXXType() methods by Ted Kremenek · 16 years ago
- 5cad1f7 Replaced Type::getAsLValueReferenceType(), Type::getAsRValueReferenceType(), Type::getAsMemberPointerType(), Type::getAsTagType(), and Type::getAsRecordType() with their Type::getAs<XXX> equivalents. by Ted Kremenek · 16 years ago
- 808825c Replace Type::getAsReferenceType() with Type::getAs<ReferenceType>(). by Ted Kremenek · 16 years ago
- 1a1a6e2 Add member template 'Type::getAs<T>', which converts a Type* to a respective T*. by Ted Kremenek · 16 years ago
- 9f8a04f Diagnose ++/-- op on objc pointers in nonfragile abi, instead of crashing. by Fariborz Jahanian · 16 years ago
- f495456 Remove ASTContext::isObjCObjectPointerType(). by Steve Naroff · 16 years ago
- c70e8d9 Avoid crashing for the enclosed test case. by Steve Naroff · 16 years ago
- de2e22d Implement the ObjC pseudo built-in types as clang "BuiltinType's". I say pseudo built-in types, since Sema still injects a typedef for recognition (i.e. they aren't truly built-ins from a parser perspective). by Steve Naroff · 16 years ago
- 58f9f2c Introduce Type::isAnyPointerType() and convert all clients (suggested by Chris). by Steve Naroff · 16 years ago
- 9deaeca Remove superfluous call to getAsPointerType()... by Steve Naroff · 16 years ago
- 760e3c4 Sema::CheckAdditionOperands(): Use Type::getPointeeType() and remove PTy and OPT variables. by Steve Naroff · 16 years ago
- f8910df by Steve Naroff · 16 years ago