diff options
author | Dan Gohman <sunfish@mozilla.com> | 2016-01-11 15:01:21 -0800 |
---|---|---|
committer | Dan Gohman <sunfish@mozilla.com> | 2016-01-11 15:01:21 -0800 |
commit | 91a244f733b7db2c7779b215b5d0748ae43bae1b (patch) | |
tree | c5ff1c4865fbf27e87895543e29b50001e2b61b2 /test | |
parent | cb9700ce0513cf0dd3dfac58f3d16a1e06c7cc6f (diff) | |
download | binaryen-91a244f733b7db2c7779b215b5d0748ae43bae1b.tar.gz binaryen-91a244f733b7db2c7779b215b5d0748ae43bae1b.tar.bz2 binaryen-91a244f733b7db2c7779b215b5d0748ae43bae1b.zip |
Add @FUNCTION suffixes to hand-written tests too.
Diffstat (limited to 'test')
-rw-r--r-- | test/dot_s/asm_const.s | 2 | ||||
-rw-r--r-- | test/dot_s/basics.s | 2 | ||||
-rw-r--r-- | test/dot_s/exit.s | 2 | ||||
-rw-r--r-- | test/dot_s/memops.s | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/test/dot_s/asm_const.s b/test/dot_s/asm_const.s index fc055579d..04c2c8630 100644 --- a/test/dot_s/asm_const.s +++ b/test/dot_s/asm_const.s @@ -6,7 +6,7 @@ main: # @main .result i32 # BB#0: i32.const $push0=, .str - call emscripten_asm_const, $pop0 + call emscripten_asm_const@FUNCTION, $pop0 i32.const $push1=, 0 return $pop1 .Lfunc_end0: diff --git a/test/dot_s/basics.s b/test/dot_s/basics.s index 1c6225738..a37678ff7 100644 --- a/test/dot_s/basics.s +++ b/test/dot_s/basics.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: i32.const $push0=, .str - call $discard=, puts, $pop0 + call $discard=, puts@FUNCTION, $pop0 i32.const $push1=, 31 i32.shr_s $push2=, $0, $pop1 i32.const $push3=, 30 diff --git a/test/dot_s/exit.s b/test/dot_s/exit.s index 12bf86bf3..2fad9277f 100644 --- a/test/dot_s/exit.s +++ b/test/dot_s/exit.s @@ -6,6 +6,6 @@ main: .result i32 .local i32 i32.const $push0=, 0 - call exit, $pop0 + call exit@FUNCTION, $pop0 .Lfunc_end0: .size main, .Lfunc_end0-main diff --git a/test/dot_s/memops.s b/test/dot_s/memops.s index 893dc6b68..64c967a13 100644 --- a/test/dot_s/memops.s +++ b/test/dot_s/memops.s @@ -7,7 +7,7 @@ _Z6reporti: # @_Z6reporti i32.const $push0=, 8 i32.store $discard=, 0($pop0), $0 i32.const $push1=, .str - call emscripten_asm_const, $pop1 + call emscripten_asm_const@FUNCTION, $pop1 return .Lfunc_end0: .size _Z6reporti, .Lfunc_end0-_Z6reporti @@ -75,7 +75,7 @@ main: # @main i32.ne $push16=, $0, $pop15 br_if $pop16, .LBB1_1 .LBB1_5: - call _Z6reporti, $6 + call _Z6reporti@FUNCTION, $6 i32.const $push17=, 0 i32.const $9=, 1048576 i32.add $12=, $12, $9 |