mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-03 05:32:24 +00:00
[NFC][MLIR] Undo anonymous namespace change from https://reviews.llvm.org/D82417
Undo as it does not conform to LLVM coding style (https://llvm.org/docs/CodingStandards.html#anonymous-namespaces)
This commit is contained in:
parent
8df3e1fd86
commit
60f914e5b1
@ -32,13 +32,15 @@ struct LoopInvariantCodeMotion
|
||||
: public LoopInvariantCodeMotionBase<LoopInvariantCodeMotion> {
|
||||
void runOnOperation() override;
|
||||
};
|
||||
} // end anonymous namespace
|
||||
|
||||
// Checks whether the given op can be hoisted by checking that
|
||||
// - the op and any of its contained operations do not depend on SSA values
|
||||
// defined inside of the loop (by means of calling definedOutside).
|
||||
// - the op has no side-effects. If sideEffecting is Never, sideeffects of this
|
||||
// op and its nested ops are ignored.
|
||||
bool canBeHoisted(Operation *op, function_ref<bool(Value)> definedOutside) {
|
||||
static bool canBeHoisted(Operation *op,
|
||||
function_ref<bool(Value)> definedOutside) {
|
||||
// Check that dependencies are defined outside of loop.
|
||||
if (!llvm::all_of(op->getOperands(), definedOutside))
|
||||
return false;
|
||||
@ -72,7 +74,6 @@ bool canBeHoisted(Operation *op, function_ref<bool(Value)> definedOutside) {
|
||||
return true;
|
||||
}
|
||||
|
||||
} // end anonymous namespace
|
||||
|
||||
LogicalResult mlir::moveLoopInvariantCode(LoopLikeOpInterface looplike) {
|
||||
auto &loopBody = looplike.getLoopBody();
|
||||
|
Loading…
x
Reference in New Issue
Block a user