Skip to content

Commit 5c8019c

Browse files
committed
Improve memory access safety and T.assume handling
1 parent 3e12bc5 commit 5c8019c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/transform/simplify.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ class StmtSimplifier : public IRMutatorWithAnalyzer {
465465
return std::move(store);
466466
}
467467

468-
Stmt VisitStmt_(const AttrStmtNode* op) override {
468+
Stmt VisitStmt_(const AttrStmtNode *op) override {
469469
if (op->attr_key == "tl.assume") {
470470
PrimExpr condition = this->VisitExpr(Downcast<PrimExpr>(op->node));
471471
auto n = CopyOnWrite(op);

0 commit comments

Comments
 (0)