diff options
author | Dan Gohman <dan433584@gmail.com> | 2016-10-06 22:08:28 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2016-10-06 22:08:28 +0000 |
commit | 7f1bdb2e02ca5e61703278d11809ffbcbea1fb29 (patch) | |
tree | 37e23d2d5da406e1942bd89188e9ad5e8d64215d /llvm/test/CodeGen/WebAssembly/cfg-stackify.ll | |
parent | e51bede1d8379311d836635eb2a0de49de850b9e (diff) | |
download | bcm5719-llvm-7f1bdb2e02ca5e61703278d11809ffbcbea1fb29.tar.gz bcm5719-llvm-7f1bdb2e02ca5e61703278d11809ffbcbea1fb29.zip |
[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
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/cfg-stackify.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/cfg-stackify.ll | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |