summaryrefslogtreecommitdiffstats
path: root/mlir/lib/Transforms/LoopTiling.cpp
diff options
context:
space:
mode:
authorRiver Riddle <riverriddle@google.com>2019-05-01 12:13:44 -0700
committerMehdi Amini <joker.eph@gmail.com>2019-05-06 08:24:02 -0700
commitb14c4b4ca8cf2b97c817f27be208b7b97d483e45 (patch)
tree7f7f9d658f0cc14c137815dc120b54c7675f739a /mlir/lib/Transforms/LoopTiling.cpp
parenteaf7f6b67136352f7cf837b59e6c92b4a73dd4cf (diff)
downloadbcm5719-llvm-b14c4b4ca8cf2b97c817f27be208b7b97d483e45.tar.gz
bcm5719-llvm-b14c4b4ca8cf2b97c817f27be208b7b97d483e45.zip
Add support for basic remark diagnostics. This is the minimal functionality needed to separate notes from remarks. It also provides a starting point to start building out better remark infrastructure.
-- PiperOrigin-RevId: 246175216
Diffstat (limited to 'mlir/lib/Transforms/LoopTiling.cpp')
-rw-r--r--mlir/lib/Transforms/LoopTiling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/LoopTiling.cpp b/mlir/lib/Transforms/LoopTiling.cpp
index c215fa34172..64d1839fd66 100644
--- a/mlir/lib/Transforms/LoopTiling.cpp
+++ b/mlir/lib/Transforms/LoopTiling.cpp
@@ -403,7 +403,7 @@ void LoopTiling::runOnFunction() {
msg << tSize << " ";
msg << "]\n";
auto rootForOp = band[0];
- rootForOp.emitNote(msg.str());
+ rootForOp.emitRemark(msg.str());
}
if (failed(tileCodeGen(band, tileSizes)))
return signalPassFailure();
OpenPOWER on IntegriCloud