aboutsummaryrefslogtreecommitdiff
path: root/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp
diff options
context:
space:
mode:
authorRiver Riddle <riddleriver@gmail.com>2020-03-10 12:25:08 -0700
committerRiver Riddle <riddleriver@gmail.com>2020-03-10 12:45:45 -0700
commit153720a0a567bf37f51b465a093790ebd3555549 (patch)
tree2f0d2692fd68bea0b701ef41308fec18bc0ad9fe /mlir/lib/Transforms/LoopInvariantCodeMotion.cpp
parent7ce1e7ab075abf64409bc135aa9a4b0bec59fdf7 (diff)
downloadllvm-153720a0a567bf37f51b465a093790ebd3555549.zip
llvm-153720a0a567bf37f51b465a093790ebd3555549.tar.gz
llvm-153720a0a567bf37f51b465a093790ebd3555549.tar.bz2
[mlir][NFC] Move the interfaces and traits for side effects out of IR/ to Interfaces/
Summary: Interfaces/ is the designated directory for these types of interfaces, and also removes the need for including them directly in IR/. Differential Revision: https://reviews.llvm.org/D75886
Diffstat (limited to 'mlir/lib/Transforms/LoopInvariantCodeMotion.cpp')
-rw-r--r--mlir/lib/Transforms/LoopInvariantCodeMotion.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp b/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp
index ccac42f..a452e33 100644
--- a/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp
+++ b/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp
@@ -14,6 +14,7 @@
#include "mlir/IR/Builders.h"
#include "mlir/IR/Function.h"
+#include "mlir/Interfaces/SideEffects.h"
#include "mlir/Pass/Pass.h"
#include "mlir/Transforms/LoopLikeInterface.h"
#include "llvm/ADT/SmallPtrSet.h"