From 9cdaeefc4542d889cc8aefbc7d7e69baa8675cd9 Mon Sep 17 00:00:00 2001 From: Krzysztof Parzyszek Date: Wed, 8 Nov 2023 08:31:58 -0600 Subject: [PATCH] [flang] Fix typo in ExpressionAnalyzer::CheckIntrinsicKind, NFC --- flang/lib/Semantics/expression.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flang/lib/Semantics/expression.cpp b/flang/lib/Semantics/expression.cpp index 367414a2b446..eead0f4787f9 100644 --- a/flang/lib/Semantics/expression.cpp +++ b/flang/lib/Semantics/expression.cpp @@ -3750,7 +3750,7 @@ bool ExpressionAnalyzer::CheckIntrinsicKind( return true; } else if (foldingContext_.targetCharacteristics().CanSupportType( category, kind)) { - Say("%s(KIND=%jd) is not an enabled type for this targe"_warn_en_US, + Say("%s(KIND=%jd) is not an enabled type for this target"_warn_en_US, ToUpperCase(EnumToString(category)), kind); return true; } else {