forked from OSchip/llvm-project
Support CodeGen for __extension__ operator on aggregates.
llvm-svn: 63101
This commit is contained in:
parent
eb3a9b03ab
commit
3f66b84c86
|
@ -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); }
|
||||
|
|
Loading…
Reference in New Issue