diff options
Diffstat (limited to 'clang/lib/Sema')
| -rw-r--r-- | clang/lib/Sema/SemaStmtAsm.cpp | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/Sema/SemaStmtAsm.cpp b/clang/lib/Sema/SemaStmtAsm.cpp index 24a91716cb8..afd785c5dfb 100644 --- a/clang/lib/Sema/SemaStmtAsm.cpp +++ b/clang/lib/Sema/SemaStmtAsm.cpp @@ -156,6 +156,9 @@ StmtResult Sema::ActOnGCCAsmStmt(SourceLocation AsmLoc, bool IsSimple,      case Expr::MLV_Valid:        // Cool, this is an lvalue.        break; +    case Expr::MLV_ArrayType: +      // This is OK too. +      break;      case Expr::MLV_LValueCast: {        const Expr *LVal = OutputExpr->IgnoreParenNoopCasts(Context);        if (!getLangOpts().HeinousExtensions) {  | 

