Refine bug fix to Expr::isLvalue (commit r46917).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@46919 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/AST/Expr.cpp b/AST/Expr.cpp
index f979c7a..00ff897 100644
--- a/AST/Expr.cpp
+++ b/AST/Expr.cpp
@@ -357,6 +357,10 @@
if (TR->isFunctionType()) // from isObjectType()
return LV_NotObjectType;
+ // Allow qualified void which is an incomplete type other than void (yuck).
+ if (TR->isVoidType() && !TR.getQualifiers())
+ return LV_IncompleteVoidType;
+
if (TR->isReferenceType()) // C++ [expr]
return LV_Valid;