diff options
author | Dan Gohman <dan433584@gmail.com> | 2015-11-06 19:45:01 +0000 |
---|---|---|
committer | Dan Gohman <dan433584@gmail.com> | 2015-11-06 19:45:01 +0000 |
commit | 4b96d8d1ff42e5e9427d5f46efab889cfebda279 (patch) | |
tree | 2876e47368d26cf46f1e4a5d360e107d80a1a7a8 /llvm/test/CodeGen/WebAssembly/phi.ll | |
parent | 55ea67cea7f9fa45fe066c8670804582ad028faa (diff) | |
download | bcm5719-llvm-4b96d8d1ff42e5e9427d5f46efab889cfebda279.tar.gz bcm5719-llvm-4b96d8d1ff42e5e9427d5f46efab889cfebda279.zip |
[WebAssembly] Make expression-stack pushing explicit
Modelling of the expression stack is evolving. This patch takes another
step by making pushes explicit.
Differential Revision: http://reviews.llvm.org/D14338
llvm-svn: 252334
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/phi.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/phi.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/phi.ll b/llvm/test/CodeGen/WebAssembly/phi.ll index 5ef2da350e3..d5274c05548 100644 --- a/llvm/test/CodeGen/WebAssembly/phi.ll +++ b/llvm/test/CodeGen/WebAssembly/phi.ll @@ -10,7 +10,7 @@ target triple = "wasm32-unknown-unknown" ; CHECK-LABEL: test0: ; CHECK: get_local 0{{$}} ; CHECK: set_local [[REG:.*]], pop -; CHECK: div_s (get_local [[REG]]), {{.*}} +; CHECK: div_s push, (get_local [[REG]]), {{.*}} ; CHECK: set_local [[REG]], pop ; CHECK: return (get_local [[REG]]) define i32 @test0(i32 %p) { |