Support CodeGen for __extension__ operator on aggregates.

llvm-svn: 63101
This commit is contained in:
Eli Friedman 2009-01-27 09:03:41 +00:00
parent eb3a9b03ab
commit 3f66b84c86
1 changed files with 1 additions and 0 deletions

View File

@ -58,6 +58,7 @@ public:
CGF.ErrorUnsupported(S, "aggregate expression");
}
void VisitParenExpr(ParenExpr *PE) { Visit(PE->getSubExpr()); }
void VisitUnaryExtension(UnaryOperator *E) { Visit(E->getSubExpr()); }
// l-values.
void VisitDeclRefExpr(DeclRefExpr *DRE) { EmitAggLoadOfLValue(DRE); }