diff options
author | Dan Gohman <sunfish@mozilla.com> | 2016-01-07 11:07:20 -0800 |
---|---|---|
committer | Dan Gohman <sunfish@mozilla.com> | 2016-01-07 11:07:20 -0800 |
commit | 6c4c158537c3ad0b8819312c8a6c737df1cdfdc6 (patch) | |
tree | 78e74be508fbb17dbdeea305b21cfbf1e5a28c64 /test/torture-s/zero-struct-1.c.s | |
parent | 0c7e5beba6a1e2f5a6f23d20acc4cdce72f29f20 (diff) | |
download | binaryen-6c4c158537c3ad0b8819312c8a6c737df1cdfdc6.tar.gz binaryen-6c4c158537c3ad0b8819312c8a6c737df1cdfdc6.tar.bz2 binaryen-6c4c158537c3ad0b8819312c8a6c737df1cdfdc6.zip |
LLVM is now emitting private labels with a ".L" prefix. Update binaryen.
The .L prefix convention is admittedly not the prettiest convention
possible, but it is widely used in the ELF ecosystem.
Diffstat (limited to 'test/torture-s/zero-struct-1.c.s')
-rw-r--r-- | test/torture-s/zero-struct-1.c.s | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/torture-s/zero-struct-1.c.s b/test/torture-s/zero-struct-1.c.s index fea55e004..661315bb8 100644 --- a/test/torture-s/zero-struct-1.c.s +++ b/test/torture-s/zero-struct-1.c.s @@ -14,8 +14,8 @@ h: # @h i32.add $push2=, $1, $2 i32.store $discard=, ff($0), $pop2 return -func_end0: - .size h, func_end0-h +.Lfunc_end0: + .size h, .Lfunc_end0-h .globl main .type main,@function @@ -27,29 +27,29 @@ main: # @main i32.load $1=, f($0) i32.load $2=, ff($0) i32.const $3=, 2 - block BB1_4 + block .LBB1_4 i32.add $push1=, $1, $3 i32.store $discard=, f($0), $pop1 i32.add $push0=, $2, $3 i32.store $3=, ff($0), $pop0 i32.const $push2=, y i32.ne $push3=, $1, $pop2 - br_if $pop3, BB1_4 + br_if $pop3, .LBB1_4 # BB#1: # %if.end - block BB1_3 + block .LBB1_3 i32.const $push4=, y+2 i32.ne $push5=, $3, $pop4 - br_if $pop5, BB1_3 + br_if $pop5, .LBB1_3 # BB#2: # %if.end3 return $0 -BB1_3: # %if.then2 +.LBB1_3: # %if.then2 call abort unreachable -BB1_4: # %if.then +.LBB1_4: # %if.then call abort unreachable -func_end1: - .size main, func_end1-main +.Lfunc_end1: + .size main, .Lfunc_end1-main .type y,@object # @y .bss |