[flang][NFC] Revert message to not implemented yet

This commit is contained in:
Valentin Clement 2022-06-30 08:36:10 +02:00
parent d0f6641615
commit 6c48700204
No known key found for this signature in database
GPG Key ID: 086D54783C928776
1 changed files with 1 additions and 1 deletions

View File

@ -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");