From 7f1bdb2e02ca5e61703278d11809ffbcbea1fb29 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 6 Oct 2016 22:08:28 +0000 Subject: [WebAssembly] Remove the output operand from stores. Per spec changes, store instructions in WebAssembly no longer have a return value. Update the instruction descriptions. Differential Revision: https://reviews.llvm.org/D25122 llvm-svn: 283501 --- llvm/test/CodeGen/WebAssembly/cfg-stackify.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/test/CodeGen/WebAssembly/cfg-stackify.ll') diff --git a/llvm/test/CodeGen/WebAssembly/cfg-stackify.ll b/llvm/test/CodeGen/WebAssembly/cfg-stackify.ll index 9a036228930..943ffdcddd0 100644 --- a/llvm/test/CodeGen/WebAssembly/cfg-stackify.ll +++ b/llvm/test/CodeGen/WebAssembly/cfg-stackify.ll @@ -275,13 +275,13 @@ entry: ; CHECK-LABEL: minimal_loop: ; CHECK-NOT: br ; CHECK: .LBB7_1: -; CHECK: i32.store $drop=, 0($0), $pop{{[0-9]+}}{{$}} +; CHECK: i32.store 0($0), $pop{{[0-9]+}}{{$}} ; CHECK: br 0{{$}} ; CHECK: .LBB7_2: ; OPT-LABEL: minimal_loop: ; OPT-NOT: br ; OPT: .LBB7_1: -; OPT: i32.store $drop=, 0($0), $pop{{[0-9]+}}{{$}} +; OPT: i32.store 0($0), $pop{{[0-9]+}}{{$}} ; OPT: br 0{{$}} ; OPT: .LBB7_2: define void @minimal_loop(i32* %p) { -- cgit v1.2.3