[flang-commits] [flang] 2e2ac6f - [flang] Fix build warning (#89686)
via flang-commits
flang-commits at lists.llvm.org
Mon Apr 22 16:22:43 PDT 2024
Author: Peter Klausler
Date: 2024-04-22T16:22:40-07:00
New Revision: 2e2ac6f29c80b715c8b0495b7037f5d2427289ef
URL: https://github.com/llvm/llvm-project/commit/2e2ac6f29c80b715c8b0495b7037f5d2427289ef
DIFF: https://github.com/llvm/llvm-project/commit/2e2ac6f29c80b715c8b0495b7037f5d2427289ef.diff
LOG: [flang] Fix build warning (#89686)
A recent patch had three declared but unused variables in it, triggering
a warning in some build bots. Remove them.
Added:
Modified:
flang/lib/Evaluate/fold-logical.cpp
Removed:
################################################################################
diff --git a/flang/lib/Evaluate/fold-logical.cpp b/flang/lib/Evaluate/fold-logical.cpp
index 4c1afe9a0f2952..b7d641711c363d 100644
--- a/flang/lib/Evaluate/fold-logical.cpp
+++ b/flang/lib/Evaluate/fold-logical.cpp
@@ -482,11 +482,9 @@ static Expr<Type<TypeCategory::Logical, KIND>> RewriteOutOfRange(
CHECK(x != nullptr);
if (const auto *mold{UnwrapExpr<Expr<SomeType>>(args[1])}) {
DynamicType xType{x->GetType().value()};
- DynamicType moldType{mold->GetType().value()};
std::optional<Expr<LogicalResult>> result;
bool alwaysFalse{false};
if (auto *iXExpr{UnwrapExpr<Expr<SomeInteger>>(*x)}) {
- DynamicType iXType{iXExpr->GetType().value()};
int iXKind{iXExpr->GetType().value().kind()};
if (auto *iMoldExpr{UnwrapExpr<Expr<SomeInteger>>(*mold)}) {
// INTEGER -> INTEGER
@@ -522,7 +520,6 @@ static Expr<Type<TypeCategory::Logical, KIND>> RewriteOutOfRange(
}
}
} else if (auto *rXExpr{UnwrapExpr<Expr<SomeReal>>(*x)}) {
- DynamicType rXType{rXExpr->GetType().value()};
int rXKind{rXExpr->GetType().value().kind()};
if (auto *iMoldExpr{UnwrapExpr<Expr<SomeInteger>>(*mold)}) {
// REAL -> INTEGER
More information about the flang-commits
mailing list