diff options
Diffstat (limited to 'llvm/test/CodeGen/WebAssembly/unsupported-function-bitcasts.ll')
-rw-r--r-- | llvm/test/CodeGen/WebAssembly/unsupported-function-bitcasts.ll | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/llvm/test/CodeGen/WebAssembly/unsupported-function-bitcasts.ll b/llvm/test/CodeGen/WebAssembly/unsupported-function-bitcasts.ll index b8642b97501..61678d123c7 100644 --- a/llvm/test/CodeGen/WebAssembly/unsupported-function-bitcasts.ll +++ b/llvm/test/CodeGen/WebAssembly/unsupported-function-bitcasts.ll @@ -10,7 +10,7 @@ declare i32 @has_i64_arg(i64) declare i32 @has_ptr_arg(i8*) ; CHECK-LABEL: test_invalid_rtn: -; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, 0{{$}} +; CHECK: i32.const $push[[L0:[0-9]+]]=, 0{{$}} ; CHECK-NEXT: i32.call $push[[L1:[0-9]+]]=, .Lhas_i64_arg_bitcast_invalid.2@FUNCTION, $pop[[L0]]{{$}} ; CHECK-NEXT: drop $pop[[L1]]{{$}} ; CHECK-NEXT: i64.const $push[[L0:[0-9]+]]=, 0{{$}} @@ -32,7 +32,7 @@ define void @test_struct_rtn() { } ; CHECK-LABEL: test_invalid_arg: -; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, 2{{$}} +; CHECK: i32.const $push[[L0:[0-9]+]]=, 2{{$}} ; CHECK-NEXT: i32.call $push[[L1:[0-9]+]]=, .Lhas_ptr_arg_bitcast_invalid.4@FUNCTION, $pop[[L0]]{{$}} ; CHECK-NEXT: drop $pop[[L1]]{{$}} ; CHECK-NEXT: i32.const $push[[L0:[0-9]+]]=, 2{{$}} @@ -51,25 +51,21 @@ entry: } ; CHECK-LABEL: .Lhas_i64_arg_bitcast_invalid: -; CHECK-NEXT: .param i64 -; CHECK-NEXT: .result i64 +; CHECK-NEXT: .functype .Lhas_i64_arg_bitcast_invalid (i64) -> (i64) ; CHECK-NEXT: unreachable ; CHECK-NEXT: end_function ; CHECK-LABEL: .Lhas_i64_arg_bitcast_invalid.2: -; CHECK-NEXT: .param i32 -; CHECK-NEXT: .result i32 +; CHECK-NEXT: .functype .Lhas_i64_arg_bitcast_invalid.2 (i32) -> (i32) ; CHECK-NEXT: unreachable ; CHECK-NEXT: end_function ; CHECK-LABEL: .Lhas_ptr_arg_bitcast_invalid: -; CHECK-NEXT: .param i64 -; CHECK-NEXT: .result i32 +; CHECK-NEXT: .functype .Lhas_ptr_arg_bitcast_invalid (i64) -> (i32) ; CHECK-NEXT: unreachable ; CHECK-NEXT: end_function ; CHECK-LABEL: .Lhas_ptr_arg_bitcast_invalid.4: -; CHECK-NEXT: .param i32 -; CHECK-NEXT: .result i32 +; CHECK-NEXT: .functype .Lhas_ptr_arg_bitcast_invalid.4 (i32) -> (i32) ; CHECK-NEXT: unreachable ; CHECK-NEXT: end_function |