summaryrefslogtreecommitdiff
path: root/mlir/lib/Transforms/LoopInvariantCodeMotion.cpp
AgeCommit message (Collapse)Author
2019-05-06 Prepend an "affine-" prefix to Affine pass option names - NFCNicolas Vasilache
Trying to activate both LLVM and MLIR passes in mlir-cpu-runner showed name collisions when registering pass names. One possible way of disambiguating that should also work across dialects is to prepend the dialect name to the passes that specifically operate on that dialect. With this CL, mlir-cpu-runner tests still run when both LLVM and MLIR passes are registered -- PiperOrigin-RevId: 246539917
2019-04-18 Fix LLVM_DEBUG instancesAmit Sabne
-- PiperOrigin-RevId: 244058051
2019-04-18 Loop invariant code motion.Amit Sabne
-- PiperOrigin-RevId: 244043679