diff options
author | Stephen Neuendorffer <stephen.neuendorffer@xilinx.com> | 2020-05-13 10:27:19 -0700 |
---|---|---|
committer | Stephen Neuendorffer <stephen.neuendorffer@xilinx.com> | 2020-05-15 14:37:09 -0700 |
commit | eb623ae8320e9e37fcf888cb6b6197b7e8ab423d (patch) | |
tree | 06d1d68440af89e78923deb32cc2eec57ebd772e /mlir/lib/Transforms/LoopInvariantCodeMotion.cpp | |
parent | 802b427f20679298efaa5d2236709acf2550970e (diff) | |
download | llvm-eb623ae8320e9e37fcf888cb6b6197b7e8ab423d.zip llvm-eb623ae8320e9e37fcf888cb6b6197b7e8ab423d.tar.gz llvm-eb623ae8320e9e37fcf888cb6b6197b7e8ab423d.tar.bz2 |
[MLIR] Continue renaming of "SideEffects"
MLIRSideEffects -> MLIRSideEffectInterfaces
SideEffects.h -> SideEffectInterfaces.h
SideEffects.cpp -> SideEffectInterface.cpp
Note that I haven't renamed TableGen/SideEffects.h or TableGen/SideEffects.cpp
find -name "*.h" -exec sed -i "s/SideEffects.h/SideEffectInterfaces.h/" "{}" \;
find -name "CMakeLists.txt" -exec sed -i "s/MLIRSideEffects/MLIRSideEffectInterfaces/" "{}" \;
Differential Revision: https://reviews.llvm.org/D79890
Diffstat (limited to 'mlir/lib/Transforms/LoopInvariantCodeMotion.cpp')
-rw-r--r-- | mlir/lib/Transforms/LoopInvariantCodeMotion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp b/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp index dacd688..5fee7d62 100644 --- a/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp +++ b/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp @@ -16,7 +16,7 @@ #include "mlir/IR/Builders.h" #include "mlir/IR/Function.h" #include "mlir/Interfaces/LoopLikeInterface.h" -#include "mlir/Interfaces/SideEffects.h" +#include "mlir/Interfaces/SideEffectInterfaces.h" #include "llvm/ADT/SmallPtrSet.h" #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" |