[flang-commits] [flang] 9cdaeef - [flang] Fix typo in ExpressionAnalyzer::CheckIntrinsicKind, NFC

Krzysztof Parzyszek via flang-commits flang-commits at lists.llvm.org
Wed Nov 8 06:35:06 PST 2023


Author: Krzysztof Parzyszek
Date: 2023-11-08T08:31:58-06:00
New Revision: 9cdaeefc4542d889cc8aefbc7d7e69baa8675cd9

URL: https://github.com/llvm/llvm-project/commit/9cdaeefc4542d889cc8aefbc7d7e69baa8675cd9
DIFF: https://github.com/llvm/llvm-project/commit/9cdaeefc4542d889cc8aefbc7d7e69baa8675cd9.diff

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

Added: 
    

Modified: 
    flang/lib/Semantics/expression.cpp

Removed: 
    


################################################################################
diff  --git a/flang/lib/Semantics/expression.cpp b/flang/lib/Semantics/expression.cpp
index 367414a2b4465ce..eead0f4787f923c 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 {


        


More information about the flang-commits mailing list