зеркало из https://github.com/microsoft/clang-1.git
implement support for complex subscripts.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@41240 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
76e8033b82
Коммит
8bcd723ea5
|
@ -69,10 +69,8 @@ public:
|
|||
ComplexPairTy VisitParenExpr(ParenExpr *PE) { return Visit(PE->getSubExpr());}
|
||||
|
||||
// l-values.
|
||||
ComplexPairTy VisitDeclRefExpr(DeclRefExpr *DRE) {
|
||||
return EmitLoadOfLValue(DRE);
|
||||
}
|
||||
// case Expr::ArraySubscriptExprClass:
|
||||
ComplexPairTy VisitDeclRefExpr(Expr *E) { return EmitLoadOfLValue(E); }
|
||||
ComplexPairTy VisitArraySubscriptExpr(Expr *E) { return EmitLoadOfLValue(E); }
|
||||
|
||||
// Operators.
|
||||
// case Expr::UnaryOperatorClass:
|
||||
|
|
Загрузка…
Ссылка в новой задаче