[WebAssembly] Add a test for wasm-store-results pass
[oota-llvm.git] / test / CodeGen / WebAssembly / store-results.ll
1 ; RUN: llc < %s -asm-verbose=false | FileCheck %s
2
3 ; Test that the wasm-store-results pass makes users of stored values use the
4 ; result of store expressions to reduce get_local/set_local traffic.
5
6 target datalayout = "e-p:32:32-i64:64-n32:64-S128"
7 target triple = "wasm32-unknown-unknown"
8
9 ; CHECK-LABEL: single_block:
10 ; CHECK-NOT: .local
11 ; CHECK: i32.const $push{{[0-9]+}}=, 0
12 ; CHECK: i32.store $push[[STORE:[0-9]+]]=, $0, $pop{{[0-9]+}}
13 ; CHECK: return $pop[[STORE]]{{$}}
14 define i32 @single_block(i32* %p) {
15 entry:
16   store i32 0, i32* %p
17   ret i32 0
18 }