diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp index 21f2b07d13..2f12c4e0b4 100644 --- a/lib/AST/Expr.cpp +++ b/lib/AST/Expr.cpp @@ -955,11 +955,6 @@ bool Expr::isIntegerConstantExpr(llvm::APSInt &Result, ASTContext &Ctx, if (!SubExpr->getType()->isArithmeticType() || !getType()->isIntegerType()) { if (Loc) *Loc = SubExpr->getLocStart(); - // GCC accepts pointers as an extension. - // FIXME: check getLangOptions().NoExtensions. At the moment, it doesn't - // appear possible to get langOptions() from the Expr. - if (SubExpr->getType()->isPointerType()) // && !NoExtensions - return true; return false; }