From 6c487002045bf142893fed9b8ccee4f462685ddd Mon Sep 17 00:00:00 2001 From: Valentin Clement Date: Thu, 30 Jun 2022 08:36:10 +0200 Subject: [PATCH] [flang][NFC] Revert message to not implemented yet --- flang/lib/Lower/IntrinsicCall.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flang/lib/Lower/IntrinsicCall.cpp b/flang/lib/Lower/IntrinsicCall.cpp index 357bbec78862..c8c4be666968 100644 --- a/flang/lib/Lower/IntrinsicCall.cpp +++ b/flang/lib/Lower/IntrinsicCall.cpp @@ -1505,7 +1505,7 @@ static void checkPrecisionLoss(llvm::StringRef name, // lowering and could be used here. Emit an error and continue // generating the code with the narrowing cast so that the user // can get a complete list of the problematic intrinsic calls. - std::string message("TODO: no math runtime available for '"); + std::string message("not yet implemented: no math runtime available for '"); llvm::raw_string_ostream sstream(message); if (name == "pow") { assert(funcType.getNumInputs() == 2 && "power operator has two arguments");