[flang] Fix typo in ExpressionAnalyzer::CheckIntrinsicKind, NFC

This commit is contained in:
Krzysztof Parzyszek 2023-11-08 08:31:58 -06:00
parent 26ab444e88
commit 9cdaeefc45

View File

@ -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 {