diff options
author | Abramo Bagnara <abramo.bagnara@gmail.com> | 2012-01-07 10:52:36 +0000 |
---|---|---|
committer | Abramo Bagnara <abramo.bagnara@gmail.com> | 2012-01-07 10:52:36 +0000 |
commit | 1cd8368eb2559035adadc83f66101df13becf4a9 (patch) | |
tree | 5d5226559de814872af5fc225083f8f3416189de /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | e57e752b71f0254e697156ed8c5c15040f53e6d6 (diff) | |
download | bcm5719-llvm-1cd8368eb2559035adadc83f66101df13becf4a9.tar.gz bcm5719-llvm-1cd8368eb2559035adadc83f66101df13becf4a9.zip |
Fixed TypeofExpr AST and code generation.
llvm-svn: 147730
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 62d18ea8eed..cde2de9819a 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -929,19 +929,33 @@ void CodeGenFunction::EmitVariablyModifiedType(QualType type) { // We're going to walk down into the type and look for VLA // expressions. - type = type.getCanonicalType(); do { assert(type->isVariablyModifiedType()); const Type *ty = type.getTypePtr(); switch (ty->getTypeClass()) { + + default: + // Only sugared types (different from typeof_expr) can reach this point. + assert(!type.isCanonical() && "unhandled canonical type!"); + type = type.getSingleStepDesugaredType(getContext()); + break; + + case Type::TypeOfExpr: { + // This is the only sugared type requiring special treatment. + // Emit typeof expression and we are done. + Expr *E = cast<TypeOfExprType>(ty)->getUnderlyingExpr(); + EmitIgnoredExpr(E); + return; + } + #define TYPE(Class, Base) #define ABSTRACT_TYPE(Class, Base) -#define NON_CANONICAL_TYPE(Class, Base) case Type::Class: +#define NON_CANONICAL_TYPE(Class, Base) #define DEPENDENT_TYPE(Class, Base) case Type::Class: -#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class: +#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) #include "clang/AST/TypeNodes.def" - llvm_unreachable("unexpected dependent or non-canonical type!"); + llvm_unreachable("unexpected dependent type!"); // These types are never variably-modified. case Type::Builtin: @@ -999,7 +1013,7 @@ void CodeGenFunction::EmitVariablyModifiedType(QualType type) { break; } - case Type::FunctionProto: + case Type::FunctionProto: case Type::FunctionNoProto: type = cast<FunctionType>(ty)->getResultType(); break; |