From 01d74cbc8865c3aa1c42eca411384c811007eece Mon Sep 17 00:00:00 2001 From: Peter Klausler Date: Mon, 22 Apr 2024 16:18:55 -0700 Subject: [PATCH] [flang] Fix build warning A recent patch had three declared but unused variables in it, triggering a warning in some build bots. Remove them. --- flang/lib/Evaluate/fold-logical.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/flang/lib/Evaluate/fold-logical.cpp b/flang/lib/Evaluate/fold-logical.cpp index 4c1afe9a0f295..b7d641711c363 100644 --- a/flang/lib/Evaluate/fold-logical.cpp +++ b/flang/lib/Evaluate/fold-logical.cpp @@ -482,11 +482,9 @@ static Expr> RewriteOutOfRange( CHECK(x != nullptr); if (const auto *mold{UnwrapExpr>(args[1])}) { DynamicType xType{x->GetType().value()}; - DynamicType moldType{mold->GetType().value()}; std::optional> result; bool alwaysFalse{false}; if (auto *iXExpr{UnwrapExpr>(*x)}) { - DynamicType iXType{iXExpr->GetType().value()}; int iXKind{iXExpr->GetType().value().kind()}; if (auto *iMoldExpr{UnwrapExpr>(*mold)}) { // INTEGER -> INTEGER @@ -522,7 +520,6 @@ static Expr> RewriteOutOfRange( } } } else if (auto *rXExpr{UnwrapExpr>(*x)}) { - DynamicType rXType{rXExpr->GetType().value()}; int rXKind{rXExpr->GetType().value().kind()}; if (auto *iMoldExpr{UnwrapExpr>(*mold)}) { // REAL -> INTEGER