From 217f59d75b6bca29322063eff2b6051df281b6d8 Mon Sep 17 00:00:00 2001 From: Leonardo Yvens Date: Fri, 5 Jun 2020 10:33:40 -0300 Subject: [PATCH] Remove mention of dead stores in comment for MemFlags::notrap --- cranelift/codegen/src/ir/memflags.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cranelift/codegen/src/ir/memflags.rs b/cranelift/codegen/src/ir/memflags.rs index 87fd6bf3abbf..c253282f2601 100644 --- a/cranelift/codegen/src/ir/memflags.rs +++ b/cranelift/codegen/src/ir/memflags.rs @@ -65,8 +65,7 @@ impl MemFlags { /// also required to trap. /// /// The `notrap` flag tells Cranelift that the memory is *accessible*, which means that - /// accesses will not trap. This makes it possible to delete an unused load or a dead store - /// instruction. + /// accesses will not trap. This makes it possible to delete an unused load instruction. pub fn notrap(self) -> bool { self.read(FlagBit::Notrap) }