diff options
Diffstat (limited to 'src/ir/effects.h')
-rw-r--r-- | src/ir/effects.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ir/effects.h b/src/ir/effects.h index 394bf0116..401232fa1 100644 --- a/src/ir/effects.h +++ b/src/ir/effects.h @@ -230,8 +230,8 @@ struct EffectAnalyzer : public PostWalker<EffectAnalyzer> { isAtomic = true; if (!ignoreImplicitTraps) implicitTrap = true; } - void visitAtomicWake(AtomicWake* curr) { - // AtomicWake doesn't strictly write memory, but it does modify the waiters + void visitAtomicNotify(AtomicNotify* curr) { + // AtomicNotify doesn't strictly write memory, but it does modify the waiters // list associated with the specified address, which we can think of as a // write. readsMemory = true; |