[flang-commits] [flang] 6008520 - [flang][NFC] Remove debugging line in convert op

Valentin Clement via flang-commits flang-commits at lists.llvm.org
Thu Dec 1 06:25:55 PST 2022


Author: Valentin Clement
Date: 2022-12-01T15:25:43+01:00
New Revision: 6008520b1489600f1417ee53acdfbe7a52c1bd7a

URL: https://github.com/llvm/llvm-project/commit/6008520b1489600f1417ee53acdfbe7a52c1bd7a
DIFF: https://github.com/llvm/llvm-project/commit/6008520b1489600f1417ee53acdfbe7a52c1bd7a.diff

LOG: [flang][NFC] Remove debugging line in convert op

This line should not have made it to the final patch.

Added: 
    

Modified: 
    flang/lib/Optimizer/Dialect/FIROps.cpp

Removed: 
    


################################################################################
diff  --git a/flang/lib/Optimizer/Dialect/FIROps.cpp b/flang/lib/Optimizer/Dialect/FIROps.cpp
index 6eb9be5b7f28..409b64b9825b 100644
--- a/flang/lib/Optimizer/Dialect/FIROps.cpp
+++ b/flang/lib/Optimizer/Dialect/FIROps.cpp
@@ -940,7 +940,6 @@ mlir::LogicalResult fir::ConvertOp::verify() {
       (fir::isBoxedRecordType(inType) && fir::isPolymorphicType(outType)) ||
       (fir::isPolymorphicType(inType) && fir::isPolymorphicType(outType)))
     return mlir::success();
-  llvm::errs() << inType << " / " << outType << "\n";
   return emitOpError("invalid type conversion");
 }
 


        


More information about the flang-commits mailing list