- Jul 30, 2009
-
-
Ryan Flynn authored
llvm-svn: 77573
-
- Jul 29, 2009
-
-
Ted Kremenek authored
Type::getAsReferenceType() -> Type::getAs<ReferenceType>() Type::getAsRecordType() -> Type::getAs<RecordType>() Type::getAsPointerType() -> Type::getAs<PointerType>() Type::getAsBlockPointerType() -> Type::getAs<BlockPointerType>() Type::getAsLValueReferenceType() -> Type::getAs<LValueReferenceType>() Type::getAsRValueReferenceType() -> Type::getAs<RValueReferenceType>() Type::getAsMemberPointerType() -> Type::getAs<MemberPointerType>() Type::getAsReferenceType() -> Type::getAs<ReferenceType>() Type::getAsTagType() -> Type::getAs<TagType>() And remove Type::getAsReferenceType(), etc. This change is similar to one I made a couple weeks ago, but that was partly reverted pending some additional design discussion. With Doug's pending smart pointer changes for Types, it seemed natural to take this approach. llvm-svn: 77510
-
Fariborz Jahanian authored
performace sake. Also added a test case. llvm-svn: 77502
-
Eli Friedman authored
with dependent types. Fixes PR4621 and PR4627. llvm-svn: 77498
-
Fariborz Jahanian authored
class. llvm-svn: 77497
-
Fariborz Jahanian authored
excpression, if needed, and remove some ir-gen code now unnencessary. llvm-svn: 77490
-
Douglas Gregor authored
A template name can refer to a set of overloaded function templates. Model this in TemplateName, which can now refer to an OverloadedFunctionDecl that contains function templates. This removes an unspeakable hack in Sema::isTemplateName. llvm-svn: 77488
-
Sebastian Redl authored
llvm-svn: 77475
-
Douglas Gregor authored
functions, only return those overloaded functions that are actually function templates. Note that there is still a glaring problem with treating an OverloadedFunctionDecl as a TemplateName. llvm-svn: 77472
-
Douglas Gregor authored
llvm-svn: 77464
-
Douglas Gregor authored
template arguments, as in template specialization types. This permits matching out-of-line definitions of members for class templates that involve non-type template parameters. llvm-svn: 77462
-
rdar://problem/7100524Steve Naroff authored
Fix <rdar://problem/7100524> regression: "error: incompatible operand types ('void *' and 'NSString *')". Remove XFAIL from 'conditional-expr-4.m' test case (which would have caught this). Also tweaked several aspects of the test to jive with the current type checking. llvm-svn: 77453
-
Steve Naroff authored
llvm-svn: 77452
-
Sebastian Redl authored
llvm-svn: 77451
-
Daniel Dunbar authored
llvm-svn: 77421
-
Mike Stump authored
llvm-svn: 77402
-
Mike Stump authored
llvm-svn: 77391
-
Douglas Gregor authored
canonicalization for dependent TemplateSpecializationTypes occurs within ASTContext::getTemplateSpecializationType. Also, move template argument canonicalization into ASTContext::getCanonicalTemplateArgument. llvm-svn: 77388
-
Mike Stump authored
llvm-svn: 77377
-
- Jul 28, 2009
-
-
John McCall authored
llvm-svn: 77303
-
Mike Stump authored
llvm-svn: 77291
-
John McCall authored
Codegen by initializing the return value with its LLVM type's null value. llvm-svn: 77288
-
Mike Stump authored
llvm-svn: 77279
-
- Jul 27, 2009
-
-
Mike Stump authored
llvm-svn: 77254
-
Mike Stump authored
the noreturn attribute. llvm-svn: 77253
-
Mike Stump authored
llvm-svn: 77237
-
Argyrios Kyrtzidis authored
ObjCContainerDecl now is the root class for objc decls that contain methods. llvm-svn: 77235
-
Douglas Gregor authored
ActOnUninitializedDecl. llvm-svn: 77211
-
- Jul 26, 2009
-
-
Ryan Flynn authored
PR3575 - warn on declared variable or function attributes after a definition, which are currently ignored. llvm-svn: 77095
-
- Jul 25, 2009
-
-
Mike Stump authored
calls to noreturn function pointers when CFG building. llvm-svn: 77089
-
Sebastian Redl authored
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. Add custom conversions to static_cast. llvm-svn: 77076
-
John McCall authored
Fix some invalid main() methods in the test suite that were nicely exposed by the new checks. llvm-svn: 77047
-
- Jul 24, 2009
-
-
Douglas Gregor authored
Note that this also fixes a bug that affects non-template code, where we were not treating out-of-line static data members are "file-scope" variables, and therefore not checking their initializers. llvm-svn: 77002
-
Fariborz Jahanian authored
with type conversion to fix ir-gen crash. llvm-svn: 77000
-
Mike Stump authored
whitespace at ends of lines. llvm-svn: 76992
-
Steve Naroff authored
Enhance test case to cover 'isa' access on interface types (clang produces an error, GCC produces a warning). Still need back-end CodeGen for ObjCIsaExpr. llvm-svn: 76979
-
John McCall authored
llvm-svn: 76934
-
Mike Stump authored
llvm-svn: 76932
-
Douglas Gregor authored
and __has_trivial_constructor builtin pseudo-functions and additionally implements __has_trivial_copy and __has_trivial_assign, from John McCall! llvm-svn: 76916
-
Fariborz Jahanian authored
with constructors don't have a matching constructor. llvm-svn: 76913
-