diff options
Diffstat (limited to 'llvm/test/MC/WebAssembly')
-rw-r--r-- | llvm/test/MC/WebAssembly/annotations.s | 4 | ||||
-rw-r--r-- | llvm/test/MC/WebAssembly/assembler-binary.ll | 2 | ||||
-rw-r--r-- | llvm/test/MC/WebAssembly/basic-assembly.s | 16 |
3 files changed, 11 insertions, 11 deletions
diff --git a/llvm/test/MC/WebAssembly/annotations.s b/llvm/test/MC/WebAssembly/annotations.s index e049279a279..c663567f4c7 100644 --- a/llvm/test/MC/WebAssembly/annotations.s +++ b/llvm/test/MC/WebAssembly/annotations.s @@ -28,7 +28,7 @@ test_annotation: local.set 0 block i32 local.get 0 - br_on_exn 0, __cpp_exception@EVENT + br_on_exn 0, __cpp_exception rethrow end_block end_try @@ -59,7 +59,7 @@ test_annotation: # CHECK-NEXT: local.set 0 # CHECK-NEXT: block i32 # CHECK-NEXT: local.get 0 -# CHECK-NEXT: br_on_exn 0, __cpp_exception@EVENT # 0: down to label6 +# CHECK-NEXT: br_on_exn 0, __cpp_exception # 0: down to label6 # CHECK-NEXT: rethrow # to caller # CHECK-NEXT: end_block # label6: # CHECK-NEXT: end_try # label5: diff --git a/llvm/test/MC/WebAssembly/assembler-binary.ll b/llvm/test/MC/WebAssembly/assembler-binary.ll index 35bd3a88646..3683d63e435 100644 --- a/llvm/test/MC/WebAssembly/assembler-binary.ll +++ b/llvm/test/MC/WebAssembly/assembler-binary.ll @@ -26,7 +26,7 @@ entry: ; ASM: .globl foo ; ASM: foo: ; ASM-NEXT: .functype foo (i32) -> () -; ASM-NEXT: call bar@FUNCTION +; ASM-NEXT: call bar ; ASM-NEXT: end_function ; ASM: .functype bar () -> () diff --git a/llvm/test/MC/WebAssembly/basic-assembly.s b/llvm/test/MC/WebAssembly/basic-assembly.s index ab292589152..85cd05a0eaf 100644 --- a/llvm/test/MC/WebAssembly/basic-assembly.s +++ b/llvm/test/MC/WebAssembly/basic-assembly.s @@ -26,9 +26,9 @@ test0: br_if 0 # 0: down to label0 .LBB0_1: loop i32 # label1: - call something1@FUNCTION + call something1 i64.const 1234 - i32.call something2@FUNCTION + i32.call something2 i32.const 0 call_indirect 0 i32.const 1 @@ -72,7 +72,7 @@ test0: local.set 0 block i32 local.get 0 - br_on_exn 0, __cpp_exception@EVENT + br_on_exn 0, __cpp_exception rethrow .LBB0_4: end_block @@ -81,7 +81,7 @@ test0: throw 0 .LBB0_5: #i32.trunc_sat_f32_s - global.get __stack_pointer@GLOBAL + global.get __stack_pointer end_function .globaltype __stack_pointer, i32 @@ -105,9 +105,9 @@ test0: # CHECK-NEXT: br_if 0 # 0: down to label0 # CHECK-NEXT: .LBB0_1: # CHECK-NEXT: loop i32 # label1: -# CHECK-NEXT: call something1@FUNCTION +# CHECK-NEXT: call something1 # CHECK-NEXT: i64.const 1234 -# CHECK-NEXT: i32.call something2@FUNCTION +# CHECK-NEXT: i32.call something2 # CHECK-NEXT: i32.const 0 # CHECK-NEXT: call_indirect 0 # CHECK-NEXT: i32.const 1 @@ -149,7 +149,7 @@ test0: # CHECK-NEXT: local.set 0 # CHECK-NEXT: block i32 # CHECK-NEXT: local.get 0 -# CHECK-NEXT: br_on_exn 0, __cpp_exception@EVENT +# CHECK-NEXT: br_on_exn 0, __cpp_exception # CHECK-NEXT: rethrow # CHECK-NEXT: .LBB0_4: # CHECK-NEXT: end_block @@ -157,7 +157,7 @@ test0: # CHECK-NEXT: i32.const 0 # CHECK-NEXT: throw 0 # CHECK-NEXT: .LBB0_5: -# CHECK-NEXT: global.get __stack_pointer@GLOBAL +# CHECK-NEXT: global.get __stack_pointer # CHECK-NEXT: end_function # CHECK: .globaltype __stack_pointer, i32 |