diff options
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/fast-isel-i24.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/fast-isel-i24.ll | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/fast-isel-i24.ll b/llvm/test/CodeGen/WebAssembly/fast-isel-i24.ll index ef2494bdb08..b0ca27674a1 100644 --- a/llvm/test/CodeGen/WebAssembly/fast-isel-i24.ll +++ b/llvm/test/CodeGen/WebAssembly/fast-isel-i24.ll @@ -8,8 +8,7 @@ target datalayout = "e-m:e-p:32:32-i64:64-n32:64-S128" target triple = "wasm32-unknown-unknown" ; CHECK-LABEL: add: -; CHECK-NEXT: .param i32, i32{{$}} -; CHECK-NEXT: .result i32{{$}} +; CHECK-NEXT: .functype add (i32, i32) -> (i32){{$}} ; CHECK-NEXT: get_local $push2=, 0{{$}} ; CHECK-NEXT: get_local $push1=, 1{{$}} ; CHECK-NEXT: i32.add $push0=, $pop2, $pop1{{$}} @@ -20,7 +19,7 @@ define i24 @add(i24 %x, i24 %y) { } ; CHECK-LABEL: return_zero: -; CHECK-NEXT: .result i32{{$}} +; CHECK-NEXT: .functype return_zero () -> (i32){{$}} ; CHECK-NEXT: i32.const $push0=, 0{{$}} ; CHECK-NEXT: end_function define i24 @return_zero() { |