From 812bce93447756891e311334bff413e3b79ed2c7 Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Sat, 30 Mar 2019 21:29:41 +0900 Subject: Rename atomic wait/notify instructions (#1972) This renames the following: - `i32.wait` -> `i32.atomic.wait` - `i64.wait` -> `i64.atomic.wait` - `wake` -> `atomic.notify` to match the spec. --- src/ir/utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ir/utils.h') diff --git a/src/ir/utils.h b/src/ir/utils.h index db437875d..c91698124 100644 --- a/src/ir/utils.h +++ b/src/ir/utils.h @@ -128,7 +128,7 @@ struct ReFinalize : public WalkerPass { void visitAtomicRMW(AtomicRMW* curr) { curr->finalize(); } void visitAtomicCmpxchg(AtomicCmpxchg* curr) { curr->finalize(); } void visitAtomicWait(AtomicWait* curr) { curr->finalize(); } - void visitAtomicWake(AtomicWake* curr) { curr->finalize(); } + void visitAtomicNotify(AtomicNotify* curr) { curr->finalize(); } void visitSIMDExtract(SIMDExtract* curr) { curr->finalize(); } void visitSIMDReplace(SIMDReplace* curr) { curr->finalize(); } void visitSIMDShuffle(SIMDShuffle* curr) { curr->finalize(); } -- cgit v1.2.3