diff options
author | jgravelle-google <jgravelle@google.com> | 2016-10-06 17:00:17 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-06 17:00:17 -0700 |
commit | eb958269b8f3c5dd98bb24f99e9f1d5deceaa032 (patch) | |
tree | a566248bc5ab4ded2b92c10cd8d1d0a638fdf157 | |
parent | 3370c630d4f3fe9590e78be48b417b87d6771455 (diff) | |
download | binaryen-eb958269b8f3c5dd98bb24f99e9f1d5deceaa032.tar.gz binaryen-eb958269b8f3c5dd98bb24f99e9f1d5deceaa032.tar.bz2 binaryen-eb958269b8f3c5dd98bb24f99e9f1d5deceaa032.zip |
Dot s block signatures (#747)
* Support block signatures in s2wasm's .s format
* Autogenerate tests
* update cfg-stackify tests
* Remove conflict files
1255 files changed, 4446 insertions, 4220 deletions
diff --git a/src/s2wasm.h b/src/s2wasm.h index 89180e74e..6f2eb05c5 100644 --- a/src/s2wasm.h +++ b/src/s2wasm.h @@ -351,11 +351,29 @@ class S2WasmBuilder { return str; } - WasmType getType() { + WasmType tryGetType() { if (match("i32")) return i32; if (match("i64")) return i64; if (match("f32")) return f32; if (match("f64")) return f64; + return none; + } + + WasmType tryGetTypeWithoutNewline() { + const char* saved = s; + WasmType type = tryGetType(); + if (type != none && strchr(saved, '\n') > s) { + s = saved; + type = none; + } + return type; + } + + WasmType getType() { + WasmType t = tryGetType(); + if (t != none) { + return t; + } abort_on("getType"); } @@ -1087,12 +1105,15 @@ class S2WasmBuilder { } else if (match("f64.")) { handleTyped(f64); } else if (match("block")) { + WasmType blockType = tryGetTypeWithoutNewline(); auto curr = allocator->alloc<Block>(); + curr->type = blockType; curr->name = getNextLabel(); addToBlock(curr); bstack.push_back(curr); } else if (match("end_block")) { - bstack.back()->cast<Block>()->finalize(); + auto* block = bstack.back()->cast<Block>(); + block->finalize(block->type); bstack.pop_back(); } else if (peek(".LBB")) { // FIXME legacy tests: it can be leftover from "loop" or "block", but it can be a label too @@ -1102,8 +1123,10 @@ class S2WasmBuilder { recordLabel(); } else s = strchr(s, '\n'); } else if (match("loop")) { + WasmType loopType = tryGetTypeWithoutNewline(); auto curr = allocator->alloc<Loop>(); addToBlock(curr); + curr->type = loopType; curr->name = getNextLabel(); auto implicitBlock = allocator->alloc<Block>(); curr->body = implicitBlock; @@ -1112,7 +1135,7 @@ class S2WasmBuilder { auto* loop = bstack.back()->cast<Loop>(); bstack.pop_back(); loop->body->finalize(); - loop->finalize(); + loop->finalize(loop->type); } else if (match("br_table")) { auto curr = allocator->alloc<Switch>(); curr->condition = getInput(); diff --git a/test/dot_s/unreachable_blocks.s b/test/dot_s/unreachable_blocks.s new file mode 100644 index 000000000..15b63e019 --- /dev/null +++ b/test/dot_s/unreachable_blocks.s @@ -0,0 +1,121 @@ + .text + .file "/tmp/tmplu1mMq/a.out.bc" + + .type unreachable_block_void,@function +unreachable_block_void: + block + # Tests that we don't consume the type of the first item inside a block + i32.const $push0=, 1 + end_block + return $pop0 + block + end_block + .endfunc +.Lfunc_end0: + .size unreachable_block_void, .Lfunc_end0-unreachable_block_void + + .type unreachable_block_i32,@function +unreachable_block_i32: + .result i32 + i32.const $push0=, 2 + return $pop0 + block i32 + end_block + .endfunc +.Lfunc_end0: + .size unreachable_block_i32, .Lfunc_end0-unreachable_block_i32 + + .type unreachable_block_i64,@function +unreachable_block_i64: + .result i64 + i64.const $push0=, 3 + return $pop0 + block i64 + end_block + .endfunc +.Lfunc_end0: + .size unreachable_block_i64, .Lfunc_end0-unreachable_block_i64 + + .type unreachable_block_f32,@function +unreachable_block_f32: + .result f32 + f32.const $push0=, 4.5 + return $pop0 + block f32 + end_block + .endfunc +.Lfunc_end0: + .size unreachable_block_f32, .Lfunc_end0-unreachable_block_f32 + + .type unreachable_block_f64,@function +unreachable_block_f64: + .result f64 + f64.const $push0=, 5.5 + return $pop0 + block f64 + end_block + .endfunc +.Lfunc_end0: + .size unreachable_block_f64, .Lfunc_end0-unreachable_block_f64 + + .type unreachable_loop_void,@function +unreachable_loop_void: + loop + i32.const $push0=, 6 + br 0 + end_loop + return $pop0 + loop + br 0 + end_loop + .endfunc +.Lfunc_end0: + .size unreachable_loop_void, .Lfunc_end0-unreachable_loop_void + + .type unreachable_loop_i32,@function +unreachable_loop_i32: + .result i32 + i32.const $push0=, 7 + return $pop0 + loop i32 + br 0 + end_loop + .endfunc +.Lfunc_end0: + .size unreachable_loop_i32, .Lfunc_end0-unreachable_loop_i32 + + .type unreachable_loop_i64,@function +unreachable_loop_i64: + .result i64 + i64.const $push0=, 8 + return $pop0 + loop i64 + br 0 + end_loop + .endfunc +.Lfunc_end0: + .size unreachable_loop_i64, .Lfunc_end0-unreachable_loop_i64 + + .type unreachable_loop_f32,@function +unreachable_loop_f32: + .result f32 + f32.const $push0=, 9.5 + return $pop0 + loop f32 + br 0 + end_loop + .endfunc +.Lfunc_end0: + .size unreachable_loop_f32, .Lfunc_end0-unreachable_loop_f32 + + .type unreachable_loop_f64,@function +unreachable_loop_f64: + .result f64 + f64.const $push0=, 10.5 + return $pop0 + loop f64 + br 0 + end_loop + .endfunc +.Lfunc_end0: + .size unreachable_loop_f64, .Lfunc_end0-unreachable_loop_f64 diff --git a/test/dot_s/unreachable_blocks.wast b/test/dot_s/unreachable_blocks.wast new file mode 100644 index 000000000..d7e9ac095 --- /dev/null +++ b/test/dot_s/unreachable_blocks.wast @@ -0,0 +1,87 @@ +(module + (memory $0 1) + (export "memory" (memory $0)) + (table 0 anyfunc) + + (func $unreachable_block_void + (block $label$0 + ) + (return + (i32.const 1) + ) + (block $label$1 + ) + ) + (func $unreachable_block_i32 (result i32) + (return + (i32.const 2) + ) + (block $label$0 i32 + ) + ) + (func $unreachable_block_i64 (result i64) + (return + (i64.const 3) + ) + (block $label$0 i64 + ) + ) + (func $unreachable_block_f32 (result f32) + (return + (f32.const 4.5) + ) + (block $label$0 f32 + ) + ) + (func $unreachable_block_f64 (result f64) + (return + (f64.const 5.5) + ) + (block $label$0 f64 + ) + ) + (func $unreachable_loop_void + (loop $label$0 + (br $label$0) + ) + (return + (i32.const 6) + ) + (loop $label$1 + (br $label$1) + ) + ) + (func $unreachable_loop_i32 (result i32) + (return + (i32.const 7) + ) + (loop $label$0 i32 + (br $label$0) + ) + ) + (func $unreachable_loop_i64 (result i64) + (return + (i64.const 8) + ) + (loop $label$0 i64 + (br $label$0) + ) + ) + (func $unreachable_loop_f32 (result f32) + (return + (f32.const 9.5) + ) + (loop $label$0 f32 + (br $label$0) + ) + ) + (func $unreachable_loop_f64 (result f64) + (return + (f64.const 10.5) + ) + (loop $label$0 f64 + (br $label$0) + ) + ) +) +;; METADATA: { "asmConsts": {},"staticBump": 12, "initializers": [] } diff --git a/test/llvm_autogenerated/cfg-stackify.s b/test/llvm_autogenerated/cfg-stackify.s index 4ddeb1a15..2a6727f31 100644 --- a/test/llvm_autogenerated/cfg-stackify.s +++ b/test/llvm_autogenerated/cfg-stackify.s @@ -7,8 +7,8 @@ test0: .local i32 i32.const $1=, 1 .LBB0_1: - loop - block + loop + block i32.lt_s $push0=, $1, $0 br_if 0, $pop0 return @@ -31,8 +31,8 @@ test1: .local i32 i32.const $1=, 1 .LBB1_1: - loop - block + loop + block i32.lt_s $push0=, $1, $0 br_if 0, $pop0 return @@ -52,12 +52,12 @@ test1: .type test2,@function test2: .param i32, i32 - block + block i32.const $push0=, 1 i32.lt_s $push1=, $1, $pop0 br_if 0, $pop1 .LBB2_2: - loop + loop f64.load $push2=, 0($0) f64.const $push8=, 0x1.999999999999ap1 f64.mul $push3=, $pop2, $pop8 @@ -83,8 +83,8 @@ doublediamond: .result i32 i32.const $push0=, 0 i32.store 0($2), $pop0 - block - block + block + block br_if 0, $0 i32.const $push4=, 1 i32.store 0($2), $pop4 @@ -93,7 +93,7 @@ doublediamond: end_block i32.const $push1=, 2 i32.store 0($2), $pop1 - block + block br_if 0, $1 i32.const $push3=, 3 i32.store 0($2), $pop3 @@ -119,7 +119,7 @@ triangle: .result i32 i32.const $push2=, 0 i32.store 0($0), $pop2 - block + block br_if 0, $1 i32.const $push0=, 1 i32.store 0($0), $pop0 @@ -140,8 +140,8 @@ diamond: .result i32 i32.const $push0=, 0 i32.store 0($0), $pop0 - block - block + block + block br_if 0, $1 i32.const $push2=, 1 i32.store 0($0), $pop2 @@ -177,10 +177,11 @@ single_block: .type minimal_loop,@function minimal_loop: .param i32 + .result i32 i32.const $push0=, 0 i32.store 0($0), $pop0 .LBB7_1: - loop + loop i32 i32.const $push1=, 1 i32.store 0($0), $pop1 br 0 @@ -198,7 +199,7 @@ simple_loop: i32.const $push0=, 0 i32.store 0($0), $pop0 .LBB8_1: - loop + loop i32.const $push3=, 1 i32.store 0($0), $pop3 i32.eqz $push4=, $1 @@ -219,11 +220,11 @@ doubletriangle: .result i32 i32.const $push4=, 0 i32.store 0($2), $pop4 - block + block br_if 0, $0 i32.const $push0=, 2 i32.store 0($2), $pop0 - block + block br_if 0, $1 i32.const $push1=, 3 i32.store 0($2), $pop1 @@ -248,8 +249,8 @@ ifelse_earlyexits: .result i32 i32.const $push0=, 0 i32.store 0($2), $pop0 - block - block + block + block br_if 0, $0 i32.const $push3=, 1 i32.store 0($2), $pop3 @@ -275,11 +276,12 @@ ifelse_earlyexits: .type doublediamond_in_a_loop,@function doublediamond_in_a_loop: .param i32, i32, i32 + .result i32 .LBB11_1: - loop + loop i32 i32.const $push0=, 0 i32.store 0($2), $pop0 - block + block br_if 0, $0 i32.const $push2=, 1 i32.store 0($2), $pop2 @@ -290,7 +292,7 @@ doublediamond_in_a_loop: end_block i32.const $push3=, 2 i32.store 0($2), $pop3 - block + block br_if 0, $1 i32.const $push5=, 3 i32.store 0($2), $pop5 @@ -314,16 +316,16 @@ doublediamond_in_a_loop: .type test3,@function test3: .param i32 - block + block i32.const $push0=, 0 br_if 0, $pop0 i32.eq $0=, $0, $0 .LBB12_2: - block - loop + block + loop br_if 1, $0 .LBB12_3: - loop + loop i32.eqz $push1=, $0 br_if 0, $pop1 end_loop @@ -344,8 +346,8 @@ test3: .type test4,@function test4: .param i32 - block - block + block + block i32.const $push0=, 3 i32.gt_s $push1=, $0, $pop0 br_if 0, $pop1 @@ -356,7 +358,7 @@ test4: br 1 .LBB13_3: end_block - block + block i32.const $push2=, 4 i32.eq $push3=, $0, $pop2 br_if 0, $pop3 @@ -382,8 +384,8 @@ test5: i32.const $push4=, 1 i32.and $1=, $1, $pop4 .LBB14_1: - block - loop + block + loop i32.const $push7=, 0 i32.const $push6=, 0 i32.store 0($pop7), $pop6 @@ -416,9 +418,9 @@ test6: i32.const $push6=, 1 i32.and $2=, $0, $pop6 .LBB15_1: - block - block - loop + block + block + loop i32.const $push8=, 0 i32.const $push7=, 0 i32.store 0($pop8), $pop7 @@ -466,11 +468,11 @@ test7: i32.const $push6=, 1 i32.and $0=, $0, $pop6 .LBB16_1: - loop + loop i32.const $push10=, 0 i32.const $push9=, 1 i32.store 0($pop10), $pop9 - block + block br_if 0, $0 i32.const $push13=, 0 i32.const $push12=, 2 @@ -502,8 +504,9 @@ test7: .globl test8 .type test8,@function test8: + .result i32 .LBB17_1: - loop + loop i32 i32.const $push0=, 0 br_if 0, $pop0 br 0 @@ -520,8 +523,8 @@ test9: i32.const $push10=, 0 i32.store 0($pop11), $pop10 .LBB18_1: - block - loop + block + loop i32.const $push14=, 0 i32.const $push13=, 1 i32.store 0($pop14), $pop13 @@ -531,11 +534,11 @@ test9: i32.eqz $push24=, $pop1 br_if 1, $pop24 .LBB18_2: - loop + loop i32.const $push17=, 0 i32.const $push16=, 2 i32.store 0($pop17), $pop16 - block + block i32.call $push4=, a@FUNCTION i32.const $push15=, 1 i32.and $push5=, $pop4, $pop15 @@ -579,7 +582,7 @@ test10: .local i32, i32, i32, i32, i32 i32.const $0=, 2 .LBB19_1: - loop + loop copy_local $2=, $1 copy_local $3=, $0 i32.const $1=, 0 @@ -587,18 +590,18 @@ test10: br_if 0, $2 i32.const $2=, 4 .LBB19_3: - block - loop + block + loop copy_local $4=, $3 copy_local $3=, $2 .LBB19_4: - loop + loop copy_local $push3=, $4 tee_local $push2=, $2=, $pop3 i32.const $push1=, 4 i32.gt_u $push0=, $pop2, $pop1 br_if 3, $pop0 - block + block copy_local $4=, $3 br_table $2, 1, 0, 4, 2, 3, 1 .LBB19_6: @@ -622,16 +625,16 @@ test11: i32.const $push14=, 0 i32.const $push13=, 0 i32.store 0($pop14), $pop13 - block - block - block - block + block + block + block + block i32.const $push12=, 0 br_if 0, $pop12 i32.const $push16=, 0 i32.const $push5=, 1 i32.store 0($pop16), $pop5 - block + block i32.const $push15=, 0 br_if 0, $pop15 i32.const $push7=, 0 @@ -686,10 +689,10 @@ test12: .param i32 .local i32 .LBB21_1: - block - loop - block - block + block + loop + block + block i32.load8_u $push7=, 0($0) tee_local $push6=, $1=, $pop7 i32.const $push5=, 103 @@ -727,12 +730,12 @@ test12: .type test13,@function test13: .local i32 - block - block + block + block i32.const $push0=, 0 br_if 0, $pop0 i32.const $0=, 0 - block + block i32.const $push3=, 0 br_if 0, $pop3 i32.const $0=, 0 @@ -756,12 +759,12 @@ test13: .type test14,@function test14: .LBB23_1: - loop + loop i32.const $push0=, 0 br_if 0, $pop0 end_loop .LBB23_3: - loop + loop i32.const $push1=, 0 br_if 0, $pop1 end_loop @@ -774,15 +777,15 @@ test14: .type test15,@function test15: .local i32, i32 - block - block + block + block i32.const $push0=, 1 br_if 0, $pop0 i32.const $0=, 0 .LBB24_2: - block - block - loop + block + block + loop i32.const $push1=, 1 br_if 1, $pop1 i32.const $1=, 0 diff --git a/test/llvm_autogenerated/cfg-stackify.wast b/test/llvm_autogenerated/cfg-stackify.wast index a0627c585..de3fbba9c 100644 --- a/test/llvm_autogenerated/cfg-stackify.wast +++ b/test/llvm_autogenerated/cfg-stackify.wast @@ -225,12 +225,12 @@ (i32.const 0) ) ) - (func $minimal_loop (param $0 i32) + (func $minimal_loop (param $0 i32) (result i32) (i32.store (get_local $0) (i32.const 0) ) - (loop $label$0 + (loop $label$0 i32 (i32.store (get_local $0) (i32.const 1) @@ -333,8 +333,8 @@ (i32.const 0) ) ) - (func $doublediamond_in_a_loop (param $0 i32) (param $1 i32) (param $2 i32) - (loop $label$0 + (func $doublediamond_in_a_loop (param $0 i32) (param $1 i32) (param $2 i32) (result i32) + (loop $label$0 i32 (i32.store (get_local $2) (i32.const 0) @@ -609,8 +609,8 @@ ) (unreachable) ) - (func $test8 - (loop $label$0 + (func $test8 (result i32) + (loop $label$0 i32 (br_if $label$0 (i32.const 0) ) diff --git a/test/llvm_autogenerated/dead-vreg.s b/test/llvm_autogenerated/dead-vreg.s index ddd94176b..db0e73d20 100644 --- a/test/llvm_autogenerated/dead-vreg.s +++ b/test/llvm_autogenerated/dead-vreg.s @@ -5,7 +5,7 @@ foo: .param i32, i32, i32 .local i32, i32, i32, i32, i32, i32 - block + block i32.const $push3=, 1 i32.lt_s $push0=, $2, $pop3 br_if 0, $pop0 @@ -15,14 +15,14 @@ foo: i32.const $push4=, 1 i32.lt_s $4=, $1, $pop4 .LBB0_2: - loop - block + loop + block br_if 0, $4 i32.const $6=, 0 copy_local $7=, $0 copy_local $8=, $1 .LBB0_4: - loop + loop i32.store 0($7), $6 i32.add $6=, $6, $5 i32.const $push8=, 4 diff --git a/test/llvm_autogenerated/fast-isel-noreg.s b/test/llvm_autogenerated/fast-isel-noreg.s index f875e5a15..1cf0dbbc6 100644 --- a/test/llvm_autogenerated/fast-isel-noreg.s +++ b/test/llvm_autogenerated/fast-isel-noreg.s @@ -16,7 +16,7 @@ a: .type b,@function b: .result i32 - block + block i32.const $push0=, 1 br_if 0, $pop0 unreachable diff --git a/test/llvm_autogenerated/func.s b/test/llvm_autogenerated/func.s index 2f47c5638..ec8cbedfc 100644 --- a/test/llvm_autogenerated/func.s +++ b/test/llvm_autogenerated/func.s @@ -43,7 +43,7 @@ f3: f4: .param i32 .result i32 - block + block i32.const $push2=, 1 i32.and $push0=, $0, $pop2 i32.eqz $push4=, $pop0 diff --git a/test/llvm_autogenerated/irreducible-cfg.s b/test/llvm_autogenerated/irreducible-cfg.s index dad5a409a..9cecc7b3e 100644 --- a/test/llvm_autogenerated/irreducible-cfg.s +++ b/test/llvm_autogenerated/irreducible-cfg.s @@ -6,8 +6,8 @@ test0: .param i32, i32, i32, i32 .local f64, i32, i32 i32.const $5=, 0 - block - block + block + block i32.eqz $push18=, $2 br_if 0, $pop18 i32.const $push0=, 3 @@ -21,13 +21,13 @@ test0: i32.const $6=, 1 .LBB0_4: end_block - loop - block - block - block - block - block - block + loop + block + block + block + block + block + block br_table $6, 2, 0, 3, 1, 1 .LBB0_5: end_block @@ -82,8 +82,8 @@ test1: .param i32, i32, i32, i32 .local f64, i32, i32 i32.const $5=, 0 - block - block + block + block i32.eqz $push23=, $2 br_if 0, $pop23 i32.const $push0=, 3 @@ -97,15 +97,15 @@ test1: i32.const $6=, 1 .LBB1_4: end_block - loop - block - block - block - block - block - block - block - block + loop + block + block + block + block + block + block + block + block br_table $6, 3, 0, 4, 1, 2, 2 .LBB1_5: end_block diff --git a/test/llvm_autogenerated/lower-em-ehsjlj-options.s b/test/llvm_autogenerated/lower-em-ehsjlj-options.s index 7e49b89ce..0c00a2231 100644 --- a/test/llvm_autogenerated/lower-em-ehsjlj-options.s +++ b/test/llvm_autogenerated/lower-em-ehsjlj-options.s @@ -16,7 +16,7 @@ exception: # @exception i32.const $push5=, 0 i32.const $push4=, 0 i32.store __THREW__($pop5), $pop4 - block + block i32.const $push1=, 1 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -58,7 +58,7 @@ setjmp_longjmp: # @setjmp_longjmp setThrew: # @setThrew .param i32, i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load $push0=, __THREW__($pop1) br_if 0, $pop0 # 0: down to label1 diff --git a/test/llvm_autogenerated/mem-intrinsics.s b/test/llvm_autogenerated/mem-intrinsics.s index 3e23e1467..d7047b85c 100644 --- a/test/llvm_autogenerated/mem-intrinsics.s +++ b/test/llvm_autogenerated/mem-intrinsics.s @@ -96,9 +96,9 @@ frame_index: drop_result: .param i32, i32, i32, i32, i32 .result i32 - block - block - block + block + block + block i32.eqz $push0=, $3 br_if 0, $pop0 i32.call $0=, def@FUNCTION @@ -125,9 +125,9 @@ drop_result: tail_dup_to_reuse_result: .param i32, i32, i32, i32, i32 .result i32 - block - block - block + block + block + block i32.eqz $push1=, $3 br_if 0, $pop1 i32.call $0=, def@FUNCTION diff --git a/test/llvm_autogenerated/negative-base-reg.s b/test/llvm_autogenerated/negative-base-reg.s index 2c822a6d6..b3807831c 100644 --- a/test/llvm_autogenerated/negative-base-reg.s +++ b/test/llvm_autogenerated/negative-base-reg.s @@ -8,7 +8,7 @@ main: .local i32 i32.const $0=, -128 .LBB0_1: - loop + loop i32.const $push6=, args+128 i32.add $push0=, $0, $pop6 i32.const $push5=, 1 diff --git a/test/llvm_autogenerated/phi.s b/test/llvm_autogenerated/phi.s index 1b81e27b9..20211dddc 100644 --- a/test/llvm_autogenerated/phi.s +++ b/test/llvm_autogenerated/phi.s @@ -5,7 +5,7 @@ test0: .param i32 .result i32 - block + block i32.const $push0=, -1 i32.gt_s $push1=, $0, $pop0 br_if 0, $pop1 @@ -28,7 +28,7 @@ test1: i32.const $3=, 1 i32.const $4=, 0 .LBB1_1: - loop + loop copy_local $1=, $2 copy_local $2=, $3 copy_local $3=, $1 diff --git a/test/llvm_autogenerated/reg-stackify.s b/test/llvm_autogenerated/reg-stackify.s index 13f6025ca..ddf8b4c12 100644 --- a/test/llvm_autogenerated/reg-stackify.s +++ b/test/llvm_autogenerated/reg-stackify.s @@ -103,7 +103,7 @@ stack_uses: .Lfunc_begin7: .param i32, i32, i32, i32 .result i32 - block + block i32.const $push13=, 1 i32.lt_s $push5=, $0, $pop13 i32.const $push0=, 2 @@ -134,7 +134,7 @@ multiple_uses: .Lfunc_begin8: .param i32, i32, i32 .local i32 - block + block i32.load $push3=, 0($2) tee_local $push2=, $3=, $pop3 i32.ge_u $push0=, $pop2, $1 @@ -291,8 +291,8 @@ multiple_defs: f64.select $5=, $pop11, $pop9, $pop8 f64.const $7=, 0x0p0 .LBB16_1: - loop - block + loop + block f64.const $push14=, 0x1.73c083126e979p4 f64.ge $push0=, $7, $pop14 f64.ne $push1=, $7, $7 @@ -300,7 +300,7 @@ multiple_defs: br_if 0, $pop2 copy_local $8=, $6 .LBB16_3: - loop + loop f64.const $push20=, -0x1.62cc8f5c28f5cp13 f64.const $push19=, -0x1p0 f64.add $push18=, $7, $pop19 @@ -309,7 +309,7 @@ multiple_defs: copy_local $push16=, $8 tee_local $push15=, $6=, $pop16 f64.add $8=, $pop4, $pop15 - block + block br_if 0, $3 copy_local $9=, $5 .LBB16_5: @@ -415,7 +415,7 @@ stackify_indvar: .local i32 i32.const $2=, 0 .LBB22_1: - loop + loop i32.load $push0=, 0($1) i32.add $push1=, $2, $pop0 i32.store 0($1), $pop1 diff --git a/test/llvm_autogenerated/return-int32.s b/test/llvm_autogenerated/return-int32.s index 81e1cd02d..80b98b7ff 100644 --- a/test/llvm_autogenerated/return-int32.s +++ b/test/llvm_autogenerated/return-int32.s @@ -15,7 +15,7 @@ return_i32: return_i32_twice: .param i32 .result i32 - block + block i32.eqz $push6=, $0 br_if 0, $pop6 i32.const $push3=, 0 diff --git a/test/llvm_autogenerated/return-void.s b/test/llvm_autogenerated/return-void.s index 996470fc4..bb2bcf510 100644 --- a/test/llvm_autogenerated/return-void.s +++ b/test/llvm_autogenerated/return-void.s @@ -11,7 +11,7 @@ return_void: .type return_void_twice,@function return_void_twice: .param i32 - block + block i32.eqz $push4=, $0 br_if 0, $pop4 i32.const $push2=, 0 diff --git a/test/llvm_autogenerated/switch.s b/test/llvm_autogenerated/switch.s index 4b0b7f20a..d231ac3cc 100644 --- a/test/llvm_autogenerated/switch.s +++ b/test/llvm_autogenerated/switch.s @@ -4,16 +4,16 @@ .type bar32,@function bar32: .param i32 - block + block i32.const $push0=, 23 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 - block - block - block - block - block - block + block + block + block + block + block + block br_table $0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 4, 5, 0 .LBB0_2: end_block @@ -49,16 +49,16 @@ bar32: .type bar64,@function bar64: .param i64 - block + block i64.const $push1=, 23 i64.gt_u $push2=, $0, $pop1 br_if 0, $pop2 - block - block - block - block - block - block + block + block + block + block + block + block i32.wrap/i64 $push0=, $0 br_table $pop0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 4, 5, 0 .LBB1_2: diff --git a/test/llvm_autogenerated/userstack.s b/test/llvm_autogenerated/userstack.s index 5f45d3208..78647f306 100644 --- a/test/llvm_autogenerated/userstack.s +++ b/test/llvm_autogenerated/userstack.s @@ -293,7 +293,7 @@ copytoreg_fi: i32.const $push6=, 1 i32.and $0=, $0, $pop6 .LBB10_1: - loop + loop i32.const $push7=, 1 i32.store 0($2), $pop7 copy_local $2=, $1 diff --git a/test/llvm_autogenerated/varargs.s b/test/llvm_autogenerated/varargs.s index fa04d5923..2ab4aa361 100644 --- a/test/llvm_autogenerated/varargs.s +++ b/test/llvm_autogenerated/varargs.s @@ -136,7 +136,7 @@ caller_some: .type startbb,@function startbb: .param i32, i32, i32 - block + block i32.const $push0=, 1 i32.and $push1=, $0, $pop0 i32.eqz $push2=, $pop1 diff --git a/test/s2wasm_known_gcc_test_failures.txt b/test/s2wasm_known_gcc_test_failures.txt index 09761248b..2609ca18a 100644 --- a/test/s2wasm_known_gcc_test_failures.txt +++ b/test/s2wasm_known_gcc_test_failures.txt @@ -14,11 +14,3 @@ vfprintf-chk-1.c.s # Call has wrong number of parameters for function declaration. pr44942.c.s - -# New in 0xc: -# return type check failures -pr17133.c.s -pr24716.c.s -pr34415.c.s -pr38051.c.s -pr55875.c.s diff --git a/test/torture-s/20000112-1.c.s b/test/torture-s/20000112-1.c.s index 2bfd7a524..c53ff48e8 100644 --- a/test/torture-s/20000112-1.c.s +++ b/test/torture-s/20000112-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000113-1.c.s b/test/torture-s/20000113-1.c.s index 54ef8851e..a843acf0c 100644 --- a/test/torture-s/20000113-1.c.s +++ b/test/torture-s/20000113-1.c.s @@ -8,7 +8,7 @@ foobar: # @foobar .param i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push1=, 1 i32.and $push11=, $0, $pop1 tee_local $push10=, $0=, $pop11 @@ -55,6 +55,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000121-1.c.s b/test/torture-s/20000121-1.c.s index 4bf8e2dae..713f0f65c 100644 --- a/test/torture-s/20000121-1.c.s +++ b/test/torture-s/20000121-1.c.s @@ -38,4 +38,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20000205-1.c.s b/test/torture-s/20000205-1.c.s index e2b090dc9..3084333d9 100644 --- a/test/torture-s/20000205-1.c.s +++ b/test/torture-s/20000205-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000217-1.c.s b/test/torture-s/20000217-1.c.s index c5e38b5b7..95ac3e5e6 100644 --- a/test/torture-s/20000217-1.c.s +++ b/test/torture-s/20000217-1.c.s @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000223-1.c.s b/test/torture-s/20000223-1.c.s index adfad24a2..4143e192d 100644 --- a/test/torture-s/20000223-1.c.s +++ b/test/torture-s/20000223-1.c.s @@ -7,7 +7,7 @@ check: # @check .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.sub $push1=, $pop0, $1 i32.and $push2=, $1, $pop1 @@ -37,5 +37,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20000224-1.c.s b/test/torture-s/20000224-1.c.s index dd16a077d..f836e1b63 100644 --- a/test/torture-s/20000224-1.c.s +++ b/test/torture-s/20000224-1.c.s @@ -8,7 +8,7 @@ test: # @test .result i32 .local i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.const $push10=, 0 i32.load $push9=, loop_1($pop10) tee_local $push8=, $0=, $pop9 @@ -23,7 +23,7 @@ test: # @test i32.const $4=, 0 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push19=, 31 i32.shl $2=, $3, $pop19 i32.const $push18=, 1 @@ -94,5 +94,5 @@ flag: .size flag, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000225-1.c.s b/test/torture-s/20000225-1.c.s index ab28fb393..76230ce48 100644 --- a/test/torture-s/20000225-1.c.s +++ b/test/torture-s/20000225-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000227-1.c.s b/test/torture-s/20000227-1.c.s index a98e05e3d..3368619b8 100644 --- a/test/torture-s/20000227-1.c.s +++ b/test/torture-s/20000227-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20000313-1.c.s b/test/torture-s/20000313-1.c.s index d9b98b266..81b556573 100644 --- a/test/torture-s/20000313-1.c.s +++ b/test/torture-s/20000313-1.c.s @@ -34,4 +34,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20000314-1.c.s b/test/torture-s/20000314-1.c.s index ab134750e..b5f06fcda 100644 --- a/test/torture-s/20000314-1.c.s +++ b/test/torture-s/20000314-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000314-2.c.s b/test/torture-s/20000314-2.c.s index 90509a8df..3a80b56bc 100644 --- a/test/torture-s/20000314-2.c.s +++ b/test/torture-s/20000314-2.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load $push0=, a($pop1) br_if 0, $pop0 # 0: down to label0 @@ -42,6 +42,6 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000314-3.c.s b/test/torture-s/20000314-3.c.s index af293f215..e26e89806 100644 --- a/test/torture-s/20000314-3.c.s +++ b/test/torture-s/20000314-3.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000402-1.c.s b/test/torture-s/20000402-1.c.s index 7820b572c..42d2ed974 100644 --- a/test/torture-s/20000402-1.c.s +++ b/test/torture-s/20000402-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000403-1.c.s b/test/torture-s/20000403-1.c.s index 66a3349fb..f65b19950 100644 --- a/test/torture-s/20000403-1.c.s +++ b/test/torture-s/20000403-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push8=, 0 i32.load $push0=, aa($pop8) i32.const $push1=, 4096 @@ -83,6 +83,6 @@ bb: .size bb, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000412-1.c.s b/test/torture-s/20000412-1.c.s index 52245e1a8..bd0a90821 100644 --- a/test/torture-s/20000412-1.c.s +++ b/test/torture-s/20000412-1.c.s @@ -25,7 +25,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load16_u $push0=, i($pop3) i32.const $push1=, 65535 @@ -62,6 +62,6 @@ wordlist: .size wordlist, 828 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000412-2.c.s b/test/torture-s/20000412-2.c.s index f2089145c..1ced2f2d4 100644 --- a/test/torture-s/20000412-2.c.s +++ b/test/torture-s/20000412-2.c.s @@ -17,8 +17,8 @@ f: # @f tee_local $push11=, $2=, $pop12 i32.store __stack_pointer($pop5), $pop11 i32.store 12($2), $0 - block - block + block + block i32.eqz $push13=, $0 br_if 0, $pop13 # 0: down to label1 # BB#1: # %if.end @@ -51,7 +51,7 @@ main: # @main .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 100 i32.const $push4=, 0 i32.call $push1=, f@FUNCTION, $pop0, $pop4 @@ -71,6 +71,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000412-3.c.s b/test/torture-s/20000412-3.c.s index c2b7cea7e..e528d62d3 100644 --- a/test/torture-s/20000412-3.c.s +++ b/test/torture-s/20000412-3.c.s @@ -37,7 +37,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $2=, 70 - block + block i32.load8_u $push1=, 0($0) i32.load8_u $push0=, 0($1) i32.ne $push2=, $pop1, $pop0 @@ -55,5 +55,5 @@ f: # @f .size f, .Lfunc_end2-f - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000412-4.c.s b/test/torture-s/20000412-4.c.s index 1cb8d9b87..139d240b5 100644 --- a/test/torture-s/20000412-4.c.s +++ b/test/torture-s/20000412-4.c.s @@ -8,8 +8,8 @@ f: # @f .param i32, i32, i32, i32, i32 .local i32 # BB#0: # %entry - block - block + block + block i32.sub $push15=, $0, $2 tee_local $push14=, $5=, $pop15 i32.const $push0=, 0 @@ -30,7 +30,7 @@ f: # @f i32.sub $2=, $pop8, $1 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.add $push19=, $2, $3 tee_local $push18=, $2=, $pop19 i32.const $push17=, -1 @@ -72,6 +72,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000412-5.c.s b/test/torture-s/20000412-5.c.s index d547b1ba5..116b4bead 100644 --- a/test/torture-s/20000412-5.c.s +++ b/test/torture-s/20000412-5.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000412-6.c.s b/test/torture-s/20000412-6.c.s index e689941b8..ff7e8c38b 100644 --- a/test/torture-s/20000412-6.c.s +++ b/test/torture-s/20000412-6.c.s @@ -12,7 +12,7 @@ main: # @main i32.const $0=, 512 .LBB0_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.load16_u $push0=, 0($1) i32.sub $push1=, $0, $pop0 i32.const $push10=, 65535 @@ -25,7 +25,7 @@ main: # @main br_if 0, $pop2 # 0: up to label0 # BB#2: # %bug.exit end_loop - block + block i32.const $push3=, 491 i32.ne $push4=, $0, $pop3 br_if 0, $pop4 # 0: down to label1 @@ -49,13 +49,13 @@ bug: # @bug .param i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.ge_u $push0=, $1, $2 br_if 0, $pop0 # 0: down to label2 # BB#1: # %for.body.preheader .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.load16_u $push1=, 0($1) i32.sub $push2=, $0, $pop1 i32.const $push7=, 65535 @@ -88,6 +88,6 @@ buf: .size buf, 10 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000419-1.c.s b/test/torture-s/20000419-1.c.s index 367d28d07..58262ab82 100644 --- a/test/torture-s/20000419-1.c.s +++ b/test/torture-s/20000419-1.c.s @@ -7,7 +7,7 @@ brother: # @brother .param i32, i32, i32 # BB#0: # %entry - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end return @@ -26,7 +26,7 @@ brother: # @brother sister: # @sister .param i32, i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 4($0) i32.eq $push1=, $pop0, $1 br_if 0, $pop1 # 0: down to label1 @@ -84,6 +84,6 @@ main: # @main .size .Lmain.f, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000422-1.c.s b/test/torture-s/20000422-1.c.s index 45c04c457..8305c0dc1 100644 --- a/test/torture-s/20000422-1.c.s +++ b/test/torture-s/20000422-1.c.s @@ -8,8 +8,8 @@ main: # @main .result i32 .local i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.const $push18=, 0 i32.load $push17=, num($pop18) tee_local $push16=, $0=, $pop17 @@ -27,8 +27,8 @@ main: # @main .LBB0_2: # %for.cond1.preheader # =>This Loop Header: Depth=1 # Child Loop BB0_4 Depth 2 - loop # label2: - block + loop # label2: + block i32.le_s $push4=, $1, $6 br_if 0, $pop4 # 0: down to label3 # BB#3: # %for.body3.preheader @@ -38,8 +38,8 @@ main: # @main .LBB0_4: # %for.body3 # Parent Loop BB0_2 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label4: - block + loop # label4: + block i32.load $push26=, 0($7) tee_local $push25=, $3=, $pop26 i32.const $push24=, 4 @@ -82,7 +82,7 @@ main: # @main i32.const $8=, 0 .LBB0_10: # %for.body17 # =>This Inner Loop Header: Depth=1 - loop # label6: + loop # label6: i32.const $push36=, ops i32.add $push11=, $7, $pop36 i32.load $push12=, 0($pop11) @@ -166,6 +166,6 @@ num: .size num, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000503-1.c.s b/test/torture-s/20000503-1.c.s index 4d5ddd4ca..4288dd4cd 100644 --- a/test/torture-s/20000503-1.c.s +++ b/test/torture-s/20000503-1.c.s @@ -37,5 +37,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000511-1.c.s b/test/torture-s/20000511-1.c.s index 2d1a98485..7009746d8 100644 --- a/test/torture-s/20000511-1.c.s +++ b/test/torture-s/20000511-1.c.s @@ -7,7 +7,7 @@ f: # @f .param i32, i32 # BB#0: # %entry - block + block i32.ne $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -35,6 +35,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000519-1.c.s b/test/torture-s/20000519-1.c.s index 749a524e2..162356b93 100644 --- a/test/torture-s/20000519-1.c.s +++ b/test/torture-s/20000519-1.c.s @@ -11,7 +11,7 @@ bar: # @bar # BB#0: # %entry .LBB0_1: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.load $2=, 0($1) i32.const $push4=, 4 i32.add $push0=, $1, $pop4 @@ -43,7 +43,7 @@ foo: # @foo i32.store 12($pop6), $1 .LBB1_1: # %do.body.i # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load $2=, 0($1) i32.const $push8=, 4 i32.add $push0=, $1, $pop8 @@ -76,7 +76,7 @@ main: # @main i32.store __stack_pointer($pop9), $pop13 i64.const $push0=, 12884901890 i64.store 0($0), $pop0 - block + block i32.const $push1=, 1 i32.call $push2=, foo@FUNCTION, $pop1, $0 i32.const $push3=, 3 @@ -98,5 +98,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20000519-2.c.s b/test/torture-s/20000519-2.c.s index 6bb7ab02b..ced39c711 100644 --- a/test/torture-s/20000519-2.c.s +++ b/test/torture-s/20000519-2.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, x($pop3) i32.const $push1=, -1 @@ -35,6 +35,6 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000523-1.c.s b/test/torture-s/20000523-1.c.s index bd1f36bcf..17176f0b8 100644 --- a/test/torture-s/20000523-1.c.s +++ b/test/torture-s/20000523-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000528-1.c.s b/test/torture-s/20000528-1.c.s index bf259d69c..37f8318d6 100644 --- a/test/torture-s/20000528-1.c.s +++ b/test/torture-s/20000528-1.c.s @@ -13,7 +13,7 @@ main: # @main i32.load16_u $push3=, l($pop4) tee_local $push2=, $0=, $pop3 i32.store16 s($pop5), $pop2 - block + block i32.const $push0=, 65534 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -48,6 +48,6 @@ s: .size s, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000603-1.c.s b/test/torture-s/20000603-1.c.s index 30eb6591e..ca2550061 100644 --- a/test/torture-s/20000603-1.c.s +++ b/test/torture-s/20000603-1.c.s @@ -32,4 +32,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20000605-1.c.s b/test/torture-s/20000605-1.c.s index 41beadbac..516a2eb5a 100644 --- a/test/torture-s/20000605-1.c.s +++ b/test/torture-s/20000605-1.c.s @@ -11,14 +11,14 @@ main: # @main i32.const $0=, 256 .LBB0_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push3=, -1 i32.add $push2=, $0, $pop3 tee_local $push1=, $0=, $pop2 br_if 0, $pop1 # 0: up to label0 # BB#2: # %render_image_rgb_a.exit end_loop - block + block br_if 0, $0 # 0: down to label1 # BB#3: # %if.end i32.const $push0=, 0 @@ -33,6 +33,6 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000605-2.c.s b/test/torture-s/20000605-2.c.s index 819d34028..75456eb4a 100644 --- a/test/torture-s/20000605-2.c.s +++ b/test/torture-s/20000605-2.c.s @@ -8,8 +8,8 @@ f1: # @f1 .param i32, i32 .local i32, i32 # BB#0: # %entry - block - block + block + block i32.load $push9=, 0($0) tee_local $push8=, $2=, $pop9 i32.load $push0=, 0($1) @@ -19,7 +19,7 @@ f1: # @f1 i32.const $3=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push10=, 5 i32.ge_s $push2=, $3, $pop10 br_if 2, $pop2 # 2: down to label0 @@ -78,6 +78,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000605-3.c.s b/test/torture-s/20000605-3.c.s index b09103a84..05f0302a9 100644 --- a/test/torture-s/20000605-3.c.s +++ b/test/torture-s/20000605-3.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20000622-1.c.s b/test/torture-s/20000622-1.c.s index 16695bcb9..a06309307 100644 --- a/test/torture-s/20000622-1.c.s +++ b/test/torture-s/20000622-1.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 12 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -52,7 +52,7 @@ bar: # @bar baz: # @baz .param i32, i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 11 i32.ne $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -85,6 +85,6 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000703-1.c.s b/test/torture-s/20000703-1.c.s index c39c09218..9285517e4 100644 --- a/test/torture-s/20000703-1.c.s +++ b/test/torture-s/20000703-1.c.s @@ -83,5 +83,5 @@ main: # @main .size .L.str.1, 18 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000706-1.c.s b/test/torture-s/20000706-1.c.s index c9e2465e2..0f0c2b7d6 100644 --- a/test/torture-s/20000706-1.c.s +++ b/test/torture-s/20000706-1.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -69,7 +69,7 @@ bar: # @bar foo: # @foo .param i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -146,6 +146,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000706-2.c.s b/test/torture-s/20000706-2.c.s index 4aba9ae92..fc7b80603 100644 --- a/test/torture-s/20000706-2.c.s +++ b/test/torture-s/20000706-2.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -69,7 +69,7 @@ bar: # @bar foo: # @foo .param i32, i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 0($1) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -146,6 +146,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000706-3.c.s b/test/torture-s/20000706-3.c.s index 05cdf2396..1bc1ce3ef 100644 --- a/test/torture-s/20000706-3.c.s +++ b/test/torture-s/20000706-3.c.s @@ -22,7 +22,7 @@ baz: # @baz bar: # @bar .param i32 # BB#0: # %entry - block + block i32.const $push1=, 2 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -51,7 +51,7 @@ foo: # @foo # BB#0: # %entry i32.const $push0=, 0 i32.store c($pop0), $0 - block + block i32.const $push1=, 1 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label1 @@ -96,6 +96,6 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000706-4.c.s b/test/torture-s/20000706-4.c.s index 56314ca92..139b3fd37 100644 --- a/test/torture-s/20000706-4.c.s +++ b/test/torture-s/20000706-4.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i32 # BB#0: # %entry - block + block i32.const $push1=, 2 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -48,7 +48,7 @@ foo: # @foo i32.add $push13=, $2, $pop12 i32.store c($pop0), $pop13 i32.store 12($2), $0 - block + block i32.const $push1=, 1 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label1 @@ -97,6 +97,6 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000706-5.c.s b/test/torture-s/20000706-5.c.s index 8de02ccef..e8e8f80b7 100644 --- a/test/torture-s/20000706-5.c.s +++ b/test/torture-s/20000706-5.c.s @@ -8,7 +8,7 @@ bar: # @bar .param i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push13=, c($pop0) tee_local $push12=, $1=, $pop13 @@ -49,7 +49,7 @@ foo: # @foo # BB#0: # %entry i32.const $push0=, 0 i32.store c($pop0), $0 - block + block i32.load $push1=, 0($0) i32.const $push2=, 1 i32.ne $push3=, $pop1, $pop2 @@ -124,6 +124,6 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000707-1.c.s b/test/torture-s/20000707-1.c.s index a99c45cc2..34f268905 100644 --- a/test/torture-s/20000707-1.c.s +++ b/test/torture-s/20000707-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 4 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -28,7 +28,7 @@ foo: # @foo bar: # @bar .param i32, i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 4($0) i32.const $push1=, 4 i32.ne $push2=, $pop0, $pop1 @@ -86,6 +86,6 @@ main: # @main .size .Lmain.x, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000715-1.c.s b/test/torture-s/20000715-1.c.s index 79f066cac..aef6a7dda 100644 --- a/test/torture-s/20000715-1.c.s +++ b/test/torture-s/20000715-1.c.s @@ -120,5 +120,5 @@ y: .size y, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000715-2.c.s b/test/torture-s/20000715-2.c.s index 789c548a9..f04095c39 100644 --- a/test/torture-s/20000715-2.c.s +++ b/test/torture-s/20000715-2.c.s @@ -34,5 +34,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000717-1.c.s b/test/torture-s/20000717-1.c.s index e5a290ae4..62dde8fe0 100644 --- a/test/torture-s/20000717-1.c.s +++ b/test/torture-s/20000717-1.c.s @@ -9,7 +9,7 @@ bar: # @bar .result i32 .local i32 # BB#0: # %entry - block + block i32.load $push5=, 0($1) tee_local $push4=, $2=, $pop5 i32.load $push0=, 4($1) @@ -38,7 +38,7 @@ foo: # @foo .result i32 .local i32 # BB#0: # %entry - block + block i32.load $push5=, 0($0) tee_local $push4=, $2=, $pop5 i32.load $push1=, 4($0) @@ -101,6 +101,6 @@ main: # @main .size .Lmain.t, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000717-2.c.s b/test/torture-s/20000717-2.c.s index ffbaf8427..3c354d4a7 100644 --- a/test/torture-s/20000717-2.c.s +++ b/test/torture-s/20000717-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000717-3.c.s b/test/torture-s/20000717-3.c.s index dab193c2a..b865e7aa8 100644 --- a/test/torture-s/20000717-3.c.s +++ b/test/torture-s/20000717-3.c.s @@ -28,7 +28,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, c($pop3) i32.const $push1=, -1 @@ -56,6 +56,6 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000717-4.c.s b/test/torture-s/20000717-4.c.s index 28aa4485a..64553311b 100644 --- a/test/torture-s/20000717-4.c.s +++ b/test/torture-s/20000717-4.c.s @@ -37,4 +37,4 @@ s: .size s, 100 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20000717-5.c.s b/test/torture-s/20000717-5.c.s index 57abd36f8..f7200ea46 100644 --- a/test/torture-s/20000717-5.c.s +++ b/test/torture-s/20000717-5.c.s @@ -8,7 +8,7 @@ bar: # @bar .param i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push0=, 0($3) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -53,7 +53,7 @@ foo: # @foo .param i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push1=, 0($0) i32.const $push2=, 1 i32.ne $push3=, $pop1, $pop2 @@ -136,6 +136,6 @@ main: # @main .size .Lmain.t, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000722-1.c.s b/test/torture-s/20000722-1.c.s index 434eb5ed4..1960520d3 100644 --- a/test/torture-s/20000722-1.c.s +++ b/test/torture-s/20000722-1.c.s @@ -32,7 +32,7 @@ bar: # @bar foo: # @foo .param i32 # BB#0: # %entry - block + block i32.load $push0=, 4($0) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -52,6 +52,6 @@ foo: # @foo .size foo, .Lfunc_end2-foo - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20000726-1.c.s b/test/torture-s/20000726-1.c.s index 0737a6505..ad7cbc925 100644 --- a/test/torture-s/20000726-1.c.s +++ b/test/torture-s/20000726-1.c.s @@ -29,5 +29,5 @@ adjust_xy: # @adjust_xy .size adjust_xy, .Lfunc_end1-adjust_xy - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000731-1.c.s b/test/torture-s/20000731-1.c.s index dceb27660..2910f0c97 100644 --- a/test/torture-s/20000731-1.c.s +++ b/test/torture-s/20000731-1.c.s @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000731-2.c.s b/test/torture-s/20000731-2.c.s index 944e575d4..8eb415648 100644 --- a/test/torture-s/20000731-2.c.s +++ b/test/torture-s/20000731-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000801-1.c.s b/test/torture-s/20000801-1.c.s index 95b162636..88f3a2a9b 100644 --- a/test/torture-s/20000801-1.c.s +++ b/test/torture-s/20000801-1.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32 .local i32, i32, i32 # BB#0: # %entry - block + block i32.const $push4=, 1 i32.lt_s $push0=, $1, $pop4 br_if 0, $pop0 # 0: down to label0 @@ -16,7 +16,7 @@ foo: # @foo i32.add $2=, $0, $1 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push16=, 3 i32.add $push15=, $0, $pop16 tee_local $push14=, $1=, $pop15 @@ -68,7 +68,7 @@ main: # @main i32.store8 14($0), $pop8 i32.const $push0=, 1 i32.store16 12($0), $pop0 - block + block i32.load $push1=, 12($0) i32.const $push7=, 1 i32.ne $push2=, $pop1, $pop7 @@ -86,6 +86,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000801-2.c.s b/test/torture-s/20000801-2.c.s index fa29d5c42..5f4306e47 100644 --- a/test/torture-s/20000801-2.c.s +++ b/test/torture-s/20000801-2.c.s @@ -8,12 +8,12 @@ test: # @test .param i32 .result i32 # BB#0: # %entry - block + block i32.eqz $push3=, $0 br_if 0, $pop3 # 0: down to label0 .LBB0_1: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load $push2=, 0($0) tee_local $push1=, $0=, $pop2 br_if 0, $pop1 # 0: up to label1 @@ -77,7 +77,7 @@ main: # @main copy_local $0=, $pop9 .LBB3_1: # %while.body.i # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.load $push13=, 0($0) tee_local $push12=, $0=, $pop13 br_if 0, $pop12 # 0: up to label2 @@ -91,5 +91,5 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000801-3.c.s b/test/torture-s/20000801-3.c.s index cee4292c1..d8012715a 100644 --- a/test/torture-s/20000801-3.c.s +++ b/test/torture-s/20000801-3.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, s+4($pop3) i32.const $push1=, 1 @@ -36,6 +36,6 @@ s: .size s, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20000801-4.c.s b/test/torture-s/20000801-4.c.s index d506627b0..f9c734ae7 100644 --- a/test/torture-s/20000801-4.c.s +++ b/test/torture-s/20000801-4.c.s @@ -49,5 +49,5 @@ t: .size t, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000808-1.c.s b/test/torture-s/20000808-1.c.s index 03617f977..34f77c99f 100644 --- a/test/torture-s/20000808-1.c.s +++ b/test/torture-s/20000808-1.c.s @@ -18,7 +18,7 @@ bar: # @bar f: # @f .param i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) br_if 0, $pop0 # 0: down to label0 # BB#1: # %lor.lhs.false @@ -106,6 +106,6 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20000815-1.c.s b/test/torture-s/20000815-1.c.s index 97dd0fbaa..696867f68 100644 --- a/test/torture-s/20000815-1.c.s +++ b/test/torture-s/20000815-1.c.s @@ -18,9 +18,9 @@ invalidate_memory: # @invalidate_memory .LBB0_1: # %for.body # =>This Loop Header: Depth=1 # Child Loop BB0_2 Depth 2 - block - loop # label1: - block + block + loop # label1: + block i32.const $push12=, 2 i32.shl $push2=, $4, $pop12 i32.const $push11=, table @@ -32,11 +32,11 @@ invalidate_memory: # @invalidate_memory .LBB0_2: # %for.body6 # Parent Loop BB0_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label3: + loop # label3: copy_local $push14=, $0 tee_local $push13=, $3=, $pop14 i32.load $0=, 4($pop13) - block + block i32.load8_u $push4=, 36($3) i32.eqz $push20=, $pop4 br_if 0, $pop20 # 0: down to label4 @@ -136,17 +136,17 @@ main: # @main .LBB3_1: # %for.body.i # =>This Loop Header: Depth=1 # Child Loop BB3_2 Depth 2 - block - loop # label6: - block + block + loop # label6: + block i32.eqz $push31=, $2 br_if 0, $pop31 # 0: down to label7 .LBB3_2: # %for.body6.i # Parent Loop BB3_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label8: + loop # label8: i32.load $0=, 4($2) - block + block i32.load8_u $push1=, 36($2) i32.eqz $push32=, $pop1 br_if 0, $pop32 # 0: down to label9 @@ -163,7 +163,7 @@ main: # @main # in Loop: Header=BB3_1 Depth=1 end_loop end_block # label7: - block + block i32.const $push30=, 1 i32.add $push29=, $1, $pop30 tee_local $push28=, $1=, $pop29 @@ -203,5 +203,5 @@ table: .size table, 128 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20000818-1.c.s b/test/torture-s/20000818-1.c.s index 8e3a87eee..13f9b8365 100644 --- a/test/torture-s/20000818-1.c.s +++ b/test/torture-s/20000818-1.c.s @@ -37,5 +37,5 @@ temporary_obstack: .size temporary_obstack, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20000819-1.c.s b/test/torture-s/20000819-1.c.s index 6095e71db..85444a956 100644 --- a/test/torture-s/20000819-1.c.s +++ b/test/torture-s/20000819-1.c.s @@ -7,8 +7,8 @@ foo: # @foo .param i32, i32 # BB#0: # %entry - block - block + block + block i32.const $push0=, 0 i32.sub $push10=, $pop0, $1 tee_local $push9=, $1=, $pop10 @@ -21,7 +21,7 @@ foo: # @foo i32.add $1=, $0, $pop3 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.load $push4=, 0($1) i32.const $push11=, 1 i32.le_s $push5=, $pop4, $pop11 @@ -73,6 +73,6 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20000910-1.c.s b/test/torture-s/20000910-1.c.s index 50b1213cf..164c0315e 100644 --- a/test/torture-s/20000910-1.c.s +++ b/test/torture-s/20000910-1.c.s @@ -45,7 +45,7 @@ bar: # @bar baz: # @baz .param i32, i32 # BB#0: # %entry - block + block i32.ne $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -59,6 +59,6 @@ baz: # @baz .size baz, .Lfunc_end3-baz - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20000910-2.c.s b/test/torture-s/20000910-2.c.s index e9fb46a10..07b1ca9d7 100644 --- a/test/torture-s/20000910-2.c.s +++ b/test/torture-s/20000910-2.c.s @@ -7,8 +7,8 @@ main: # @main .result i32 # BB#0: # %entry - block - block + block + block i32.const $push7=, 0 i32.load $push0=, list($pop7) i32.const $push6=, 42 @@ -60,7 +60,7 @@ list: .size list, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 .functype strchr, i32, i32, i32 diff --git a/test/torture-s/20000914-1.c.s b/test/torture-s/20000914-1.c.s index 0947b263d..fbea458eb 100644 --- a/test/torture-s/20000914-1.c.s +++ b/test/torture-s/20000914-1.c.s @@ -22,7 +22,7 @@ convert_like_real: # @convert_like_real .param i32 .result i32 # BB#0: # %entry - block + block i32.load8_u $push0=, 8($0) i32.const $push1=, 222 i32.ne $push2=, $pop0, $pop1 @@ -59,7 +59,7 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype malloc, i32, i32 .functype exit, void, i32 diff --git a/test/torture-s/20000917-1.c.s b/test/torture-s/20000917-1.c.s index f0eff8d19..37d6038b6 100644 --- a/test/torture-s/20000917-1.c.s +++ b/test/torture-s/20000917-1.c.s @@ -47,5 +47,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20001009-1.c.s b/test/torture-s/20001009-1.c.s index 9ad2a43b9..2de256acf 100644 --- a/test/torture-s/20001009-1.c.s +++ b/test/torture-s/20001009-1.c.s @@ -32,4 +32,4 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20001009-2.c.s b/test/torture-s/20001009-2.c.s index 622318e66..52ff01ebb 100644 --- a/test/torture-s/20001009-2.c.s +++ b/test/torture-s/20001009-2.c.s @@ -8,7 +8,7 @@ foo: # @foo .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, b($pop3) i32.eqz $push9=, $pop0 @@ -17,7 +17,7 @@ foo: # @foo i32.const $0=, 1 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: #APP #NO_APP i32.const $push8=, 0 @@ -45,7 +45,7 @@ main: # @main .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load $push0=, b($pop2) i32.eqz $push9=, $pop0 @@ -54,7 +54,7 @@ main: # @main i32.const $0=, 1 .LBB1_2: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: #APP #NO_APP i32.const $push7=, 0 @@ -84,4 +84,4 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20001011-1.c.s b/test/torture-s/20001011-1.c.s index b381367ee..6b7037133 100644 --- a/test/torture-s/20001011-1.c.s +++ b/test/torture-s/20001011-1.c.s @@ -35,5 +35,5 @@ main: # @main .size .L.str, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/20001013-1.c.s b/test/torture-s/20001013-1.c.s index 3866d84bc..5cea122f4 100644 --- a/test/torture-s/20001013-1.c.s +++ b/test/torture-s/20001013-1.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 255 i32.and $push1=, $1, $pop0 i32.ne $push2=, $pop1, $1 @@ -35,7 +35,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push6=, 0 i32.load $push2=, z($pop6) i32.const $push5=, 0 @@ -67,6 +67,6 @@ z: .size z, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20001017-1.c.s b/test/torture-s/20001017-1.c.s index 15462302e..0f6763c75 100644 --- a/test/torture-s/20001017-1.c.s +++ b/test/torture-s/20001017-1.c.s @@ -7,7 +7,7 @@ bug: # @bug .param i32, i32, i32, i32, i32, f64, i32, i32, i32, i32, f64, i32, i32 # BB#0: # %entry - block + block i32.ne $push0=, $11, $0 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -34,5 +34,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20001017-2.c.s b/test/torture-s/20001017-2.c.s index 9e37ef1c5..4147bfaf4 100644 --- a/test/torture-s/20001017-2.c.s +++ b/test/torture-s/20001017-2.c.s @@ -7,7 +7,7 @@ fn_4parms: # @fn_4parms .param i32, i32, i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 0($1) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -46,5 +46,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20001024-1.c.s b/test/torture-s/20001024-1.c.s index 35891d7ee..063b068ef 100644 --- a/test/torture-s/20001024-1.c.s +++ b/test/torture-s/20001024-1.c.s @@ -8,7 +8,7 @@ bar: # @bar .param i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push0=, 0($1) br_if 0, $pop0 # 0: down to label0 # BB#1: # %lor.lhs.false @@ -62,6 +62,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20001026-1.c.s b/test/torture-s/20001026-1.c.s index 6d1763768..44a588019 100644 --- a/test/torture-s/20001026-1.c.s +++ b/test/torture-s/20001026-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20001027-1.c.s b/test/torture-s/20001027-1.c.s index f84a7974e..0a1c3b998 100644 --- a/test/torture-s/20001027-1.c.s +++ b/test/torture-s/20001027-1.c.s @@ -14,7 +14,7 @@ main: # @main i32.load $push1=, p($pop7) i32.const $push2=, 2 i32.store 0($pop1), $pop2 - block + block i32.const $push6=, 0 i32.load $push3=, x($pop6) i32.const $push5=, 2 @@ -51,6 +51,6 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20001031-1.c.s b/test/torture-s/20001031-1.c.s index ab5cb2414..5acb353dc 100644 --- a/test/torture-s/20001031-1.c.s +++ b/test/torture-s/20001031-1.c.s @@ -7,7 +7,7 @@ t1: # @t1 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 4100 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -41,7 +41,7 @@ t2: # @t2 t3: # @t3 .param i64 # BB#0: # %entry - block + block i64.const $push0=, 2147487743 i64.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -83,6 +83,6 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20001101.c.s b/test/torture-s/20001101.c.s index 37468f920..64760f4f2 100644 --- a/test/torture-s/20001101.c.s +++ b/test/torture-s/20001101.c.s @@ -29,7 +29,7 @@ bogus: # @bogus i32.const $push1=, 1 i32.or $push2=, $pop0, $pop1 i32.store8 0($0), $pop2 - block + block i32.const $push3=, 7 i32.ne $push4=, $1, $pop3 br_if 0, $pop4 # 0: down to label0 @@ -58,6 +58,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20001108-1.c.s b/test/torture-s/20001108-1.c.s index 3ff7a8146..4671e8cd8 100644 --- a/test/torture-s/20001108-1.c.s +++ b/test/torture-s/20001108-1.c.s @@ -53,5 +53,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20001111-1.c.s b/test/torture-s/20001111-1.c.s index d9c9caaa6..e07c473dc 100644 --- a/test/torture-s/20001111-1.c.s +++ b/test/torture-s/20001111-1.c.s @@ -37,7 +37,7 @@ bar: # @bar main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load8_u $push0=, next_buffer($pop2) i32.eqz $push5=, $pop0 @@ -65,6 +65,6 @@ next_buffer: .size next_buffer, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20001112-1.c.s b/test/torture-s/20001112-1.c.s index 5fbe86428..1a111b4c0 100644 --- a/test/torture-s/20001112-1.c.s +++ b/test/torture-s/20001112-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20001121-1.c.s b/test/torture-s/20001121-1.c.s index 9751579f7..b1f7d3fba 100644 --- a/test/torture-s/20001121-1.c.s +++ b/test/torture-s/20001121-1.c.s @@ -51,5 +51,5 @@ d: .size d, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20001124-1.c.s b/test/torture-s/20001124-1.c.s index 9a1565141..cbb1c6a4d 100644 --- a/test/torture-s/20001124-1.c.s +++ b/test/torture-s/20001124-1.c.s @@ -58,5 +58,5 @@ f: .size f, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20001130-1.c.s b/test/torture-s/20001130-1.c.s index bfa982211..e47e2c82a 100644 --- a/test/torture-s/20001130-1.c.s +++ b/test/torture-s/20001130-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20001130-2.c.s b/test/torture-s/20001130-2.c.s index 90915c88e..b9696b765 100644 --- a/test/torture-s/20001130-2.c.s +++ b/test/torture-s/20001130-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20001203-1.c.s b/test/torture-s/20001203-1.c.s index c50ac5fcb..158023ec2 100644 --- a/test/torture-s/20001203-1.c.s +++ b/test/torture-s/20001203-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20001203-2.c.s b/test/torture-s/20001203-2.c.s index fbf49f8a8..db0daffe4 100644 --- a/test/torture-s/20001203-2.c.s +++ b/test/torture-s/20001203-2.c.s @@ -9,8 +9,8 @@ create_array_type: # @create_array_type .result i32 .local i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.eqz $push51=, $0 br_if 0, $pop51 # 0: down to label1 # BB#1: # %if.end @@ -21,7 +21,7 @@ create_array_type: # @create_array_type i32.mul $push3=, $pop1, $pop2 i32.store 0($0), $pop3 i32.const $7=, 0 - block + block i32.load $push26=, 4($0) tee_local $push25=, $1=, $pop26 i32.eqz $push52=, $pop25 @@ -45,7 +45,7 @@ create_array_type: # @create_array_type i32.add $push39=, $3, $pop40 tee_local $push38=, $3=, $pop39 i32.store 0($7), $pop38 - block + block i32.const $push9=, 12 i32.add $push37=, $1, $pop9 tee_local $push36=, $4=, $pop37 @@ -171,6 +171,6 @@ main: # @main .size main, .Lfunc_end5-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20001221-1.c.s b/test/torture-s/20001221-1.c.s index c6383fa43..e976cb152 100644 --- a/test/torture-s/20001221-1.c.s +++ b/test/torture-s/20001221-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20001228-1.c.s b/test/torture-s/20001228-1.c.s index b687bc990..6dee315e3 100644 --- a/test/torture-s/20001228-1.c.s +++ b/test/torture-s/20001228-1.c.s @@ -51,7 +51,7 @@ main: # @main i32.store __stack_pointer($pop7), $pop9 i32.const $push0=, 1 i32.store 12($0), $pop0 - block + block i32.load8_u $push1=, 12($0) i32.const $push8=, 1 i32.ne $push2=, $pop1, $pop8 @@ -69,6 +69,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20001229-1.c.s b/test/torture-s/20001229-1.c.s index 7fdd97dc4..d03c9912d 100644 --- a/test/torture-s/20001229-1.c.s +++ b/test/torture-s/20001229-1.c.s @@ -38,5 +38,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010106-1.c.s b/test/torture-s/20010106-1.c.s index a3ff42ae2..ac55528d8 100644 --- a/test/torture-s/20010106-1.c.s +++ b/test/torture-s/20010106-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push8=, 2 i32.add $push7=, $0, $pop8 tee_local $push6=, $0=, $pop7 @@ -58,6 +58,6 @@ main: # @main .size .Lswitch.table, 28 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010114-1.c.s b/test/torture-s/20010114-1.c.s index 895c2f449..b0c2c6446 100644 --- a/test/torture-s/20010114-1.c.s +++ b/test/torture-s/20010114-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010116-1.c.s b/test/torture-s/20010116-1.c.s index 02e65938c..be612f18b 100644 --- a/test/torture-s/20010116-1.c.s +++ b/test/torture-s/20010116-1.c.s @@ -7,7 +7,7 @@ find: # @find .param i32, i32 # BB#0: # %for.cond - block + block i32.sub $push0=, $1, $0 i32.const $push1=, 12 i32.div_s $push2=, $pop0, $pop1 @@ -35,7 +35,7 @@ find: # @find ok: # @ok .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -75,6 +75,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010118-1.c.s b/test/torture-s/20010118-1.c.s index 902c2f111..9786fed32 100644 --- a/test/torture-s/20010118-1.c.s +++ b/test/torture-s/20010118-1.c.s @@ -19,8 +19,8 @@ foo: # @foo bar: # @bar .param i32, i32, i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.load $push0=, 0($0) i32.ne $push1=, $pop0, $1 br_if 0, $pop1 # 0: down to label1 @@ -76,5 +76,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010119-1.c.s b/test/torture-s/20010119-1.c.s index c1ab56880..2bb606f9e 100644 --- a/test/torture-s/20010119-1.c.s +++ b/test/torture-s/20010119-1.c.s @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010123-1.c.s b/test/torture-s/20010123-1.c.s index 5a0495b1a..17a659f98 100644 --- a/test/torture-s/20010123-1.c.s +++ b/test/torture-s/20010123-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010129-1.c.s b/test/torture-s/20010129-1.c.s index 646c42187..709cd21e5 100644 --- a/test/torture-s/20010129-1.c.s +++ b/test/torture-s/20010129-1.c.s @@ -44,7 +44,7 @@ baz3: # @baz3 .param i32 .result i32 # BB#0: # %entry - block + block i32.eqz $push1=, $0 br_if 0, $pop1 # 0: down to label0 # BB#1: # %if.end @@ -74,8 +74,8 @@ foo: # @foo i32.const $push25=, 1 i32.add $push4=, $pop26, $pop25 i32.store baz1.l($pop29), $pop4 - block - block + block + block i32.ge_s $push5=, $9, $1 br_if 0, $pop5 # 0: down to label2 # BB#1: # %if.then.lr.ph @@ -108,10 +108,10 @@ foo: # @foo i32.const $10=, 0 .LBB3_2: # %if.then # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: copy_local $2=, $10 i32.const $10=, 0 - block + block i32.or $push17=, $2, $3 i32.eqz $push45=, $pop17 br_if 0, $pop45 # 0: down to label4 @@ -119,7 +119,7 @@ foo: # @foo # in Loop: Header=BB3_2 Depth=1 i32.const $push37=, 1 i32.select $10=, $2, $pop37, $2 - block + block br_if 0, $3 # 0: down to label5 # BB#4: # %land.lhs.true25 # in Loop: Header=BB3_2 Depth=1 @@ -210,6 +210,6 @@ bar: .size bar, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010206-1.c.s b/test/torture-s/20010206-1.c.s index 2bfdc95ee..40cc93e7e 100644 --- a/test/torture-s/20010206-1.c.s +++ b/test/torture-s/20010206-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010221-1.c.s b/test/torture-s/20010221-1.c.s index 034e37c9a..3b4e56944 100644 --- a/test/torture-s/20010221-1.c.s +++ b/test/torture-s/20010221-1.c.s @@ -9,7 +9,7 @@ main: # @main .local i32, i32, i32 # BB#0: # %entry i32.const $2=, 0 - block + block i32.const $push8=, 0 i32.load $push7=, n($pop8) tee_local $push6=, $0=, $pop7 @@ -20,7 +20,7 @@ main: # @main i32.const $1=, 45 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.select $1=, $2, $1, $2 i32.const $push11=, 1 i32.add $push10=, $2, $pop11 @@ -54,6 +54,6 @@ n: .size n, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010222-1.c.s b/test/torture-s/20010222-1.c.s index 896c76979..bba74eb84 100644 --- a/test/torture-s/20010222-1.c.s +++ b/test/torture-s/20010222-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push10=, 0 i32.load $push1=, a+4($pop10) i32.const $push9=, 0 @@ -43,6 +43,6 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010224-1.c.s b/test/torture-s/20010224-1.c.s index af5fd61d8..c4d54ee4f 100644 --- a/test/torture-s/20010224-1.c.s +++ b/test/torture-s/20010224-1.c.s @@ -24,7 +24,7 @@ ba_compute_psd: # @ba_compute_psd i32.load16_u $push16=, 0($pop6) tee_local $push15=, $4=, $pop16 i32.store16 0($pop18), $pop15 - block + block i32.const $push14=, 1 i32.add $push13=, $0, $pop14 tee_local $push12=, $2=, $pop13 @@ -40,7 +40,7 @@ ba_compute_psd: # @ba_compute_psd i32.add $0=, $pop8, $pop24 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load16_u $push10=, 0($0) i32.const $push31=, 65535 i32.and $push9=, $4, $pop31 @@ -107,7 +107,7 @@ main: # @main i32.add $push9=, $pop8, $pop7 i32.add $push11=, $pop10, $pop9 i32.store16 0($pop4), $pop11 - block + block i32.const $push15=, 0 i32.load16_u $push12=, bndpsd+2($pop15) i32.const $push13=, 140 @@ -167,5 +167,5 @@ bndpsd: .size bndpsd, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20010325-1.c.s b/test/torture-s/20010325-1.c.s index 13b2643bc..4aa74b680 100644 --- a/test/torture-s/20010325-1.c.s +++ b/test/torture-s/20010325-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010329-1.c.s b/test/torture-s/20010329-1.c.s index b046941d5..27d97f0d4 100644 --- a/test/torture-s/20010329-1.c.s +++ b/test/torture-s/20010329-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010403-1.c.s b/test/torture-s/20010403-1.c.s index 01221e18b..2412a20bd 100644 --- a/test/torture-s/20010403-1.c.s +++ b/test/torture-s/20010403-1.c.s @@ -35,7 +35,7 @@ b: # @b c: # @c .param i32, i32 # BB#0: # %entry - block + block i32.eq $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -84,6 +84,6 @@ e: .size e, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010409-1.c.s b/test/torture-s/20010409-1.c.s index f9ef98fe8..76f971fe2 100644 --- a/test/torture-s/20010409-1.c.s +++ b/test/torture-s/20010409-1.c.s @@ -26,7 +26,7 @@ bar: # @bar .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block br_if 0, $1 # 0: down to label0 # BB#1: # %if.end i32.const $push0=, 0 @@ -133,6 +133,6 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010422-1.c.s b/test/torture-s/20010422-1.c.s index 9b5759e31..85006859a 100644 --- a/test/torture-s/20010422-1.c.s +++ b/test/torture-s/20010422-1.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010518-1.c.s b/test/torture-s/20010518-1.c.s index bbb105ed9..03d8b4b10 100644 --- a/test/torture-s/20010518-1.c.s +++ b/test/torture-s/20010518-1.c.s @@ -40,5 +40,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010518-2.c.s b/test/torture-s/20010518-2.c.s index 1ccaca146..d77869987 100644 --- a/test/torture-s/20010518-2.c.s +++ b/test/torture-s/20010518-2.c.s @@ -45,7 +45,7 @@ main: # @main i32.store8 30($0), $pop10 i32.const $push11=, 99 i32.store8 31($0), $pop11 - block + block i32.load16_u $push12=, 46($0) i32.const $push30=, 1 i32.ne $push13=, $pop12, $pop30 @@ -83,6 +83,6 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010520-1.c.s b/test/torture-s/20010520-1.c.s index 224163d87..e2874c6b5 100644 --- a/test/torture-s/20010520-1.c.s +++ b/test/torture-s/20010520-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010604-1.c.s b/test/torture-s/20010604-1.c.s index aa037e2b6..3d35dbb89 100644 --- a/test/torture-s/20010604-1.c.s +++ b/test/torture-s/20010604-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push6=, 1 i32.ne $push3=, $6, $pop6 br_if 0, $pop3 # 0: down to label0 @@ -51,6 +51,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20010605-2.c.s b/test/torture-s/20010605-2.c.s index 324119200..6aaa06341 100644 --- a/test/torture-s/20010605-2.c.s +++ b/test/torture-s/20010605-2.c.s @@ -21,7 +21,7 @@ main: # @main foo: # @foo .param i32 # BB#0: # %entry - block + block f64.load $push0=, 0($0) f64.const $push1=, 0x1p0 f64.ne $push2=, $pop0, $pop1 @@ -48,7 +48,7 @@ foo: # @foo bar: # @bar .param i32 # BB#0: # %entry - block + block f32.load $push0=, 0($0) f32.const $push1=, 0x1.8p1 f32.ne $push2=, $pop0, $pop1 @@ -75,7 +75,7 @@ bar: # @bar baz: # @baz .param i32 # BB#0: # %entry - block + block i64.load $push3=, 0($0) i32.const $push0=, 8 i32.add $push1=, $0, $pop0 @@ -104,6 +104,6 @@ baz: # @baz .size baz, .Lfunc_end3-baz - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20010711-1.c.s b/test/torture-s/20010711-1.c.s index 1fea45dc3..852d59e8a 100644 --- a/test/torture-s/20010711-1.c.s +++ b/test/torture-s/20010711-1.c.s @@ -27,5 +27,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010717-1.c.s b/test/torture-s/20010717-1.c.s index 9734a952a..74c41bb57 100644 --- a/test/torture-s/20010717-1.c.s +++ b/test/torture-s/20010717-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20010723-1.c.s b/test/torture-s/20010723-1.c.s index 42a64a2aa..1cfe62f92 100644 --- a/test/torture-s/20010723-1.c.s +++ b/test/torture-s/20010723-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010904-1.c.s b/test/torture-s/20010904-1.c.s index 71849bccd..f831b277c 100644 --- a/test/torture-s/20010904-1.c.s +++ b/test/torture-s/20010904-1.c.s @@ -24,5 +24,5 @@ y: .size y, 2112 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010904-2.c.s b/test/torture-s/20010904-2.c.s index a3bb8c804..5c7ddf37d 100644 --- a/test/torture-s/20010904-2.c.s +++ b/test/torture-s/20010904-2.c.s @@ -24,5 +24,5 @@ y: .size y, 2112 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20010910-1.c.s b/test/torture-s/20010910-1.c.s index 1f0ef17e3..3c04052a5 100644 --- a/test/torture-s/20010910-1.c.s +++ b/test/torture-s/20010910-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20010915-1.c.s b/test/torture-s/20010915-1.c.s index 07f1f9b68..4334ccf0c 100644 --- a/test/torture-s/20010915-1.c.s +++ b/test/torture-s/20010915-1.c.s @@ -29,7 +29,7 @@ main: # @main i64.store 0($2), $pop5 i32.const $push16=, 5 i32.call $drop=, x@FUNCTION, $pop16, $2 - block + block i32.const $push15=, 0 i32.load $push6=, check($pop15) i32.const $push7=, 2 @@ -62,8 +62,8 @@ x: # @x .result i32 .local i32, i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.const $push0=, 3 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label2 @@ -83,7 +83,7 @@ x: # @x i32.eqz $push69=, $pop33 br_if 0, $pop69 # 0: down to label2 # BB#3: # %if.then - block + block i32.const $push6=, .L.str i32.call $push7=, strcmp@FUNCTION, $5, $pop6 br_if 0, $pop7 # 0: down to label3 @@ -125,8 +125,8 @@ x: # @x i32.add $push46=, $4, $pop47 tee_local $push45=, $5=, $pop46 i32.store o($pop48), $pop45 - block - block + block + block i32.ge_s $push21=, $5, $0 br_if 0, $pop21 # 0: down to label5 # BB#9: # %while.body.preheader @@ -137,7 +137,7 @@ x: # @x i32.load8_u $4=, r.c.0($pop49) .LBB1_10: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label6: + loop # label6: i32.load $push52=, 0($3) tee_local $push51=, $1=, $pop52 i32.load8_u $push25=, 0($pop51) @@ -211,7 +211,7 @@ s: # @s .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, .L.str i32.call $push1=, strcmp@FUNCTION, $0, $pop0 br_if 0, $pop1 # 0: down to label7 @@ -263,7 +263,7 @@ r: # @r .result i32 .local i32 # BB#0: # %entry - block + block i32.load8_u $push11=, 0($0) tee_local $push10=, $1=, $pop11 i32.const $push9=, 0 @@ -386,7 +386,7 @@ r.c.0: .size r.c.0, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/20010924-1.c.s b/test/torture-s/20010924-1.c.s index 406dc5d0b..b227dea12 100644 --- a/test/torture-s/20010924-1.c.s +++ b/test/torture-s/20010924-1.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push37=, 0 i32.load8_u $push0=, a1($pop37) i32.const $push1=, 52 @@ -140,5 +140,5 @@ a4: .size a4, 3 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20010925-1.c.s b/test/torture-s/20010925-1.c.s index 33b9a0dd6..56bb02b87 100644 --- a/test/torture-s/20010925-1.c.s +++ b/test/torture-s/20010925-1.c.s @@ -32,7 +32,7 @@ foo: # @foo .local i32 # BB#0: # %entry i32.const $3=, 1 - block + block i32.eqz $push0=, $2 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -65,5 +65,5 @@ src: .size src, 40 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011008-3.c.s b/test/torture-s/20011008-3.c.s index ff245f2e3..6518f423e 100644 --- a/test/torture-s/20011008-3.c.s +++ b/test/torture-s/20011008-3.c.s @@ -30,9 +30,9 @@ __db_txnlist_lsnadd: # @__db_txnlist_lsnadd i32.add $5=, $1, $pop0 .LBB1_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $6=, 1 - block + block i32.eqz $push9=, $4 br_if 0, $pop9 # 0: down to label1 # BB#2: # %cond.false @@ -41,7 +41,7 @@ __db_txnlist_lsnadd: # @__db_txnlist_lsnadd .LBB1_3: # %cond.end # in Loop: Header=BB1_1 Depth=1 end_block # label1: - block + block i32.ge_s $push1=, $3, $6 br_if 0, $pop1 # 0: down to label2 # BB#4: # %for.body @@ -78,5 +78,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011019-1.c.s b/test/torture-s/20011019-1.c.s index 208745b13..cb8095931 100644 --- a/test/torture-s/20011019-1.c.s +++ b/test/torture-s/20011019-1.c.s @@ -54,5 +54,5 @@ x: .size x, 24 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011024-1.c.s b/test/torture-s/20011024-1.c.s index cef5fcb2d..824ff5ea6 100644 --- a/test/torture-s/20011024-1.c.s +++ b/test/torture-s/20011024-1.c.s @@ -10,7 +10,7 @@ main: # @main i32.const $push6=, 0 i32.const $push0=, 6513249 i32.store buf($pop6), $pop0 - block + block i32.const $push2=, buf i32.const $push1=, .L.str i32.call $push3=, strcmp@FUNCTION, $pop2, $pop1 @@ -55,6 +55,6 @@ buf: .size .L.str.1, 9 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/20011109-1.c.s b/test/torture-s/20011109-1.c.s index 1294fabd6..a3c2d1863 100644 --- a/test/torture-s/20011109-1.c.s +++ b/test/torture-s/20011109-1.c.s @@ -55,9 +55,9 @@ fail4: # @fail4 foo: # @foo .param i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 6 i32.add $push4=, $0, $pop0 tee_local $push3=, $0=, $pop4 @@ -65,9 +65,9 @@ foo: # @foo i32.gt_u $push2=, $pop3, $pop1 br_if 0, $pop2 # 0: down to label2 # BB#1: # %entry - block - block - block + block + block + block br_table $0, 2, 3, 3, 3, 3, 3, 4, 0, 5, 1, 1, 1, 2 # 2: down to label3 # 3: down to label2 # 4: down to label1 @@ -116,6 +116,6 @@ main: # @main .size main, .Lfunc_end5-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20011109-2.c.s b/test/torture-s/20011109-2.c.s index 6a18abb54..f22bf2fe6 100644 --- a/test/torture-s/20011109-2.c.s +++ b/test/torture-s/20011109-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011113-1.c.s b/test/torture-s/20011113-1.c.s index bba81d4e8..b04975b8b 100644 --- a/test/torture-s/20011113-1.c.s +++ b/test/torture-s/20011113-1.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push2=, 8 i32.add $push3=, $0, $pop2 i32.load $push4=, 0($pop3) @@ -48,7 +48,7 @@ bar: # @bar .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 21 i32.ne $push2=, $pop0, $pop1 @@ -82,7 +82,7 @@ baz: # @baz .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push2=, 8 i32.add $push3=, $0, $pop2 i32.load $push4=, 0($pop3) @@ -149,6 +149,6 @@ t: .size t, 20 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20011114-1.c.s b/test/torture-s/20011114-1.c.s index 1db72287c..de426c0c0 100644 --- a/test/torture-s/20011114-1.c.s +++ b/test/torture-s/20011114-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011115-1.c.s b/test/torture-s/20011115-1.c.s index 31259fd4e..9a0013bf7 100644 --- a/test/torture-s/20011115-1.c.s +++ b/test/torture-s/20011115-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011121-1.c.s b/test/torture-s/20011121-1.c.s index 08491ffd7..875950851 100644 --- a/test/torture-s/20011121-1.c.s +++ b/test/torture-s/20011121-1.c.s @@ -24,5 +24,5 @@ s1: .size s1, 76 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011126-1.c.s b/test/torture-s/20011126-1.c.s index f514e8223..32bbde525 100644 --- a/test/torture-s/20011126-1.c.s +++ b/test/torture-s/20011126-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, a($pop3) i32.const $push1=, -1 @@ -34,5 +34,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20011126-2.c.s b/test/torture-s/20011126-2.c.s index 598e37895..9c6136851 100644 --- a/test/torture-s/20011126-2.c.s +++ b/test/torture-s/20011126-2.c.s @@ -21,8 +21,8 @@ main: # @main # Child Loop BB0_2 Depth 2 # Child Loop BB0_4 Depth 3 # Child Loop BB0_9 Depth 2 - block - loop # label1: + block + loop # label1: i32.load8_u $push19=, 0($5) tee_local $push18=, $1=, $pop19 copy_local $6=, $pop18 @@ -30,8 +30,8 @@ main: # @main # Parent Loop BB0_1 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB0_4 Depth 3 - block - loop # label3: + block + loop # label3: i32.const $push21=, 255 i32.and $push0=, $6, $pop21 i32.const $push20=, 97 @@ -45,7 +45,7 @@ main: # @main # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label4: + loop # label4: copy_local $push32=, $6 tee_local $push31=, $8=, $pop32 i32.const $push30=, 1 @@ -82,8 +82,8 @@ main: # @main i32.gt_u $push6=, $5, $2 i32.select $push7=, $5, $2, $pop6 i32.add $1=, $0, $pop7 - block - block + block + block i32.ge_u $push8=, $5, $2 br_if 0, $pop8 # 0: down to label6 # BB#8: # %while.body14.while.body14_crit_edge.i.preheader @@ -93,7 +93,7 @@ main: # @main .LBB0_9: # %while.body14.while.body14_crit_edge.i # Parent Loop BB0_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label7: + loop # label7: i32.load8_u $push9=, 0($6) i32.store8 0($4), $pop9 i32.const $push41=, 1 @@ -122,7 +122,7 @@ main: # @main # =>This Inner Loop Header: Depth=1 end_block # label2: end_loop - loop # label8: + loop # label8: br 0 # 0: up to label8 .LBB0_14: # %test.exit end_loop @@ -140,4 +140,4 @@ main: # @main .size .L.str, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20011128-1.c.s b/test/torture-s/20011128-1.c.s index a3abbb25d..9ce961c73 100644 --- a/test/torture-s/20011128-1.c.s +++ b/test/torture-s/20011128-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011217-1.c.s b/test/torture-s/20011217-1.c.s index 436b42489..d3b9eb730 100644 --- a/test/torture-s/20011217-1.c.s +++ b/test/torture-s/20011217-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011219-1.c.s b/test/torture-s/20011219-1.c.s index 823393191..e7e3fbc15 100644 --- a/test/torture-s/20011219-1.c.s +++ b/test/torture-s/20011219-1.c.s @@ -22,7 +22,7 @@ foo: # @foo .local i32 # BB#0: # %entry # implicit-def: %vreg14 - block + block i32.const $push0=, -10 i32.add $push1=, $0, $pop0 i32.const $push2=, 4 @@ -53,5 +53,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20011223-1.c.s b/test/torture-s/20011223-1.c.s index 9609208e3..ee526e8a8 100644 --- a/test/torture-s/20011223-1.c.s +++ b/test/torture-s/20011223-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020103-1.c.s b/test/torture-s/20020103-1.c.s index 3303e3849..039a3ee99 100644 --- a/test/torture-s/20020103-1.c.s +++ b/test/torture-s/20020103-1.c.s @@ -45,5 +45,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020107-1.c.s b/test/torture-s/20020107-1.c.s index 59f4fd71a..399ef722a 100644 --- a/test/torture-s/20020107-1.c.s +++ b/test/torture-s/20020107-1.c.s @@ -28,7 +28,7 @@ main: # @main i32.const $0=, buf #APP #NO_APP - block + block i32.const $push1=, 1 i32.add $push2=, $0, $pop1 i32.const $push0=, buf @@ -57,6 +57,6 @@ buf: .size buf, 10 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20020108-1.c.s b/test/torture-s/20020108-1.c.s index b09b413db..a8a1d7a56 100644 --- a/test/torture-s/20020108-1.c.s +++ b/test/torture-s/20020108-1.c.s @@ -2570,5 +2570,5 @@ main: # @main .size main, .Lfunc_end168-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020118-1.c.s b/test/torture-s/20020118-1.c.s index 70325ff3a..dec9d60a5 100644 --- a/test/torture-s/20020118-1.c.s +++ b/test/torture-s/20020118-1.c.s @@ -13,7 +13,7 @@ foo: # @foo i32.add $0=, $pop0, $pop1 .LBB0_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push24=, 0 i32.load8_s $push2=, 0($0) i32.store n($pop24), $pop2 @@ -87,5 +87,5 @@ n: .size n, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020127-1.c.s b/test/torture-s/20020127-1.c.s index 888cfbd5a..33fd95bcd 100644 --- a/test/torture-s/20020127-1.c.s +++ b/test/torture-s/20020127-1.c.s @@ -34,5 +34,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020129-1.c.s b/test/torture-s/20020129-1.c.s index 88b7064c2..2436efdbd 100644 --- a/test/torture-s/20020129-1.c.s +++ b/test/torture-s/20020129-1.c.s @@ -9,9 +9,9 @@ foo: # @foo .local i32 # BB#0: # %entry i32.load $2=, 28($1) - block - block - block + block + block + block i32.load $push0=, 28($0) i32.eqz $push20=, $pop0 br_if 0, $pop20 # 0: down to label2 @@ -32,7 +32,7 @@ foo: # @foo br_if 0, $pop22 # 0: down to label1 .LBB0_3: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.store 4($2), $0 i32.load $push15=, 0($2) tee_local $push14=, $2=, $pop15 @@ -41,7 +41,7 @@ foo: # @foo end_loop end_block # label1: i32.load $2=, 12($1) - block + block i32.load $push5=, 12($0) i32.const $push16=, -1 i32.eq $push6=, $pop5, $pop16 @@ -122,6 +122,6 @@ x: .size x, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020201-1.c.s b/test/torture-s/20020201-1.c.s index 845af4534..5489ed32d 100644 --- a/test/torture-s/20020201-1.c.s +++ b/test/torture-s/20020201-1.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i64 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load8_u $push43=, cx($pop0) tee_local $push42=, $0=, $pop43 @@ -148,6 +148,6 @@ Lx: .size Lx, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020206-1.c.s b/test/torture-s/20020206-1.c.s index 65887a61c..248d88a99 100644 --- a/test/torture-s/20020206-1.c.s +++ b/test/torture-s/20020206-1.c.s @@ -23,7 +23,7 @@ bar: # @bar baz: # @baz .param i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 176 i32.ne $push2=, $pop0, $pop1 @@ -76,6 +76,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020206-2.c.s b/test/torture-s/20020206-2.c.s index e27ba9dc9..9633f920b 100644 --- a/test/torture-s/20020206-2.c.s +++ b/test/torture-s/20020206-2.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 16 i32.or $push1=, $0, $pop0 i32.const $push2=, 2064 @@ -39,6 +39,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020213-1.c.s b/test/torture-s/20020213-1.c.s index a4c593367..75e7f239c 100644 --- a/test/torture-s/20020213-1.c.s +++ b/test/torture-s/20020213-1.c.s @@ -19,7 +19,7 @@ foo: # @foo tee_local $push5=, $0=, $pop6 i32.select $push4=, $pop3, $pop8, $pop5 i32.store a+4($pop0), $pop4 - block + block i32.eqz $push11=, $0 br_if 0, $pop11 # 0: down to label0 # BB#1: # %if.end @@ -84,5 +84,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20020215-1.c.s b/test/torture-s/20020215-1.c.s index 15668efa2..055ef3cd2 100644 --- a/test/torture-s/20020215-1.c.s +++ b/test/torture-s/20020215-1.c.s @@ -43,5 +43,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020216-1.c.s b/test/torture-s/20020216-1.c.s index ca87978b1..40c0adab5 100644 --- a/test/torture-s/20020216-1.c.s +++ b/test/torture-s/20020216-1.c.s @@ -25,7 +25,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push5=, 0 i32.load8_s $push0=, c($pop5) i32.const $push1=, 65535 @@ -54,6 +54,6 @@ c: .size c, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020219-1.c.s b/test/torture-s/20020219-1.c.s index 587df7385..a15f61dcf 100644 --- a/test/torture-s/20020219-1.c.s +++ b/test/torture-s/20020219-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020225-1.c.s b/test/torture-s/20020225-1.c.s index e46f85bfc..1af327654 100644 --- a/test/torture-s/20020225-1.c.s +++ b/test/torture-s/20020225-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020225-2.c.s b/test/torture-s/20020225-2.c.s index 07a959cbc..ace2b29d2 100644 --- a/test/torture-s/20020225-2.c.s +++ b/test/torture-s/20020225-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020226-1.c.s b/test/torture-s/20020226-1.c.s index 2c56ca3b5..f9485e7e6 100644 --- a/test/torture-s/20020226-1.c.s +++ b/test/torture-s/20020226-1.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32, i32, i32, i32, i32, i32, i32, i64, i64, i64, i32 # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load8_u $push103=, uc($pop2) tee_local $push102=, $0=, $pop103 @@ -264,6 +264,6 @@ shift2: .size shift2, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020227-1.c.s b/test/torture-s/20020227-1.c.s index ebfbcd0b1..c3aba7edb 100644 --- a/test/torture-s/20020227-1.c.s +++ b/test/torture-s/20020227-1.c.s @@ -32,7 +32,7 @@ f1: # @f1 f2: # @f2 .param i32 # BB#0: # %entry - block + block f32.load $push1=, 1($0):p2align=0 f32.const $push2=, 0x1p0 f32.ne $push3=, $pop1, $pop2 @@ -60,6 +60,6 @@ f2: # @f2 .size f2, .Lfunc_end2-f2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20020307-1.c.s b/test/torture-s/20020307-1.c.s index 17cb51add..371be9386 100644 --- a/test/torture-s/20020307-1.c.s +++ b/test/torture-s/20020307-1.c.s @@ -7,7 +7,7 @@ f3: # @f3 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 6 i32.and $push1=, $0, $pop0 i32.const $push3=, 6 @@ -30,7 +30,7 @@ f3: # @f3 f4: # @f4 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 14 i32.and $push1=, $0, $pop0 i32.const $push2=, 10 @@ -53,7 +53,7 @@ f4: # @f4 f5: # @f5 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 30 i32.and $push1=, $0, $pop0 i32.const $push2=, 18 @@ -76,7 +76,7 @@ f5: # @f5 f6: # @f6 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 62 i32.and $push1=, $0, $pop0 i32.const $push2=, 34 @@ -99,7 +99,7 @@ f6: # @f6 f7: # @f7 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 126 i32.and $push1=, $0, $pop0 i32.const $push2=, 66 @@ -122,7 +122,7 @@ f7: # @f7 f8: # @f8 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 254 i32.and $push1=, $0, $pop0 i32.const $push2=, 130 @@ -145,7 +145,7 @@ f8: # @f8 f9: # @f9 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 510 i32.and $push1=, $0, $pop0 i32.const $push2=, 258 @@ -168,7 +168,7 @@ f9: # @f9 f10: # @f10 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1022 i32.and $push1=, $0, $pop0 i32.const $push2=, 514 @@ -191,7 +191,7 @@ f10: # @f10 f11: # @f11 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 2046 i32.and $push1=, $0, $pop0 i32.const $push2=, 1026 @@ -214,7 +214,7 @@ f11: # @f11 f12: # @f12 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 4094 i32.and $push1=, $0, $pop0 i32.const $push2=, 2050 @@ -237,7 +237,7 @@ f12: # @f12 f13: # @f13 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 8190 i32.and $push1=, $0, $pop0 i32.const $push2=, 4098 @@ -260,7 +260,7 @@ f13: # @f13 f14: # @f14 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 16382 i32.and $push1=, $0, $pop0 i32.const $push2=, 8194 @@ -283,7 +283,7 @@ f14: # @f14 f15: # @f15 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 32766 i32.and $push1=, $0, $pop0 i32.const $push2=, 16386 @@ -306,7 +306,7 @@ f15: # @f15 f16: # @f16 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 65534 i32.and $push1=, $0, $pop0 i32.const $push2=, 32770 @@ -329,7 +329,7 @@ f16: # @f16 f17: # @f17 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 131070 i32.and $push1=, $0, $pop0 i32.const $push2=, 65538 @@ -352,7 +352,7 @@ f17: # @f17 f18: # @f18 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 262142 i32.and $push1=, $0, $pop0 i32.const $push2=, 131074 @@ -375,7 +375,7 @@ f18: # @f18 f19: # @f19 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 524286 i32.and $push1=, $0, $pop0 i32.const $push2=, 262146 @@ -398,7 +398,7 @@ f19: # @f19 f20: # @f20 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1048574 i32.and $push1=, $0, $pop0 i32.const $push2=, 524290 @@ -421,7 +421,7 @@ f20: # @f20 f21: # @f21 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 2097150 i32.and $push1=, $0, $pop0 i32.const $push2=, 1048578 @@ -444,7 +444,7 @@ f21: # @f21 f22: # @f22 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 4194302 i32.and $push1=, $0, $pop0 i32.const $push2=, 2097154 @@ -467,7 +467,7 @@ f22: # @f22 f23: # @f23 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 8388606 i32.and $push1=, $0, $pop0 i32.const $push2=, 4194306 @@ -490,7 +490,7 @@ f23: # @f23 f24: # @f24 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 16777214 i32.and $push1=, $0, $pop0 i32.const $push2=, 8388610 @@ -513,7 +513,7 @@ f24: # @f24 f25: # @f25 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 33554430 i32.and $push1=, $0, $pop0 i32.const $push2=, 16777218 @@ -536,7 +536,7 @@ f25: # @f25 f26: # @f26 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 67108862 i32.and $push1=, $0, $pop0 i32.const $push2=, 33554434 @@ -559,7 +559,7 @@ f26: # @f26 f27: # @f27 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 134217726 i32.and $push1=, $0, $pop0 i32.const $push2=, 67108866 @@ -582,7 +582,7 @@ f27: # @f27 f28: # @f28 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 268435454 i32.and $push1=, $0, $pop0 i32.const $push2=, 134217730 @@ -605,7 +605,7 @@ f28: # @f28 f29: # @f29 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 536870910 i32.and $push1=, $0, $pop0 i32.const $push2=, 268435458 @@ -628,7 +628,7 @@ f29: # @f29 f30: # @f30 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1073741822 i32.and $push1=, $0, $pop0 i32.const $push2=, 536870914 @@ -651,7 +651,7 @@ f30: # @f30 f31: # @f31 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 2147483646 i32.and $push1=, $0, $pop0 i32.const $push2=, 1073741826 @@ -682,6 +682,6 @@ main: # @main .size main, .Lfunc_end29-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020314-1.c.s b/test/torture-s/20020314-1.c.s index 8eadd0deb..82c336601 100644 --- a/test/torture-s/20020314-1.c.s +++ b/test/torture-s/20020314-1.c.s @@ -45,5 +45,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020320-1.c.s b/test/torture-s/20020320-1.c.s index 18a31eb8f..33383a117 100644 --- a/test/torture-s/20020320-1.c.s +++ b/test/torture-s/20020320-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020321-1.c.s b/test/torture-s/20020321-1.c.s index e2ba486ec..a4cff1521 100644 --- a/test/torture-s/20020321-1.c.s +++ b/test/torture-s/20020321-1.c.s @@ -42,4 +42,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20020328-1.c.s b/test/torture-s/20020328-1.c.s index c0d22af32..542b49235 100644 --- a/test/torture-s/20020328-1.c.s +++ b/test/torture-s/20020328-1.c.s @@ -21,7 +21,7 @@ func: # @func testit: # @testit .param i32 # BB#0: # %entry - block + block i32.const $push0=, 20 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -59,6 +59,6 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020402-1.c.s b/test/torture-s/20020402-1.c.s index 87a3a435e..5f1f15abc 100644 --- a/test/torture-s/20020402-1.c.s +++ b/test/torture-s/20020402-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020402-2.c.s b/test/torture-s/20020402-2.c.s index 9f7674d70..28d2b6707 100644 --- a/test/torture-s/20020402-2.c.s +++ b/test/torture-s/20020402-2.c.s @@ -491,4 +491,4 @@ MyPte: .size MyPte, 392 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20020402-3.c.s b/test/torture-s/20020402-3.c.s index d01d1aeed..736847363 100644 --- a/test/torture-s/20020402-3.c.s +++ b/test/torture-s/20020402-3.c.s @@ -10,8 +10,8 @@ blockvector_for_pc_sect: # @blockvector_for_pc_sect .local i32, i32, i32, i32, i32, i32 # BB#0: # %entry i32.const $7=, 0 - block - block + block + block i32.load $push21=, 0($1) tee_local $push20=, $2=, $pop21 i32.load $push19=, 0($pop20) @@ -24,7 +24,7 @@ blockvector_for_pc_sect: # @blockvector_for_pc_sect copy_local $6=, $1 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push34=, 1 i32.add $push1=, $1, $pop34 i32.const $push33=, 1 @@ -66,8 +66,8 @@ blockvector_for_pc_sect: # @blockvector_for_pc_sect i32.add $1=, $pop11, $pop12 .LBB0_5: # %while.body10 # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: i32.load $push13=, 0($1) i64.load $push14=, 8($pop13) i64.gt_u $push15=, $pop14, $0 @@ -110,4 +110,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20020404-1.c.s b/test/torture-s/20020404-1.c.s index ebe81f428..4960460c4 100644 --- a/test/torture-s/20020404-1.c.s +++ b/test/torture-s/20020404-1.c.s @@ -37,5 +37,5 @@ bfd_make_section_anyway.foo_section: .size bfd_make_section_anyway.foo_section, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020406-1.c.s b/test/torture-s/20020406-1.c.s index 93fd2220c..1bb1189a1 100644 --- a/test/torture-s/20020406-1.c.s +++ b/test/torture-s/20020406-1.c.s @@ -42,7 +42,7 @@ DUPFFnew: # @DUPFFnew tee_local $push11=, $1=, $pop12 i32.const $push1=, 0 i32.store 8($pop11), $pop1 - block + block i32.const $push10=, 0 i32.lt_s $push2=, $0, $pop10 br_if 0, $pop2 # 0: down to label0 @@ -135,7 +135,7 @@ DUPFFexgcd: # @DUPFFexgcd i32.load $7=, 4($2) .LBB7_1: # %tailrecurse # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: copy_local $5=, $3 copy_local $3=, $2 copy_local $4=, $1 @@ -154,7 +154,7 @@ DUPFFexgcd: # @DUPFFexgcd br_if 0, $pop1 # 0: up to label1 # BB#2: # %if.end end_loop - block + block i32.const $push2=, 2 i32.ne $push3=, $6, $pop2 br_if 0, $pop3 # 0: down to label2 @@ -163,7 +163,7 @@ DUPFFexgcd: # @DUPFFexgcd i32.ne $push5=, $7, $pop4 br_if 0, $pop5 # 0: down to label2 # BB#4: # %if.end11 - block + block i32.load $push6=, 8($3) i32.load $push7=, 0($pop6) i32.eqz $push43=, $pop7 @@ -189,7 +189,7 @@ DUPFFexgcd: # @DUPFFexgcd i64.const $push13=, -4294967294 i64.store 0($2):p2align=2, $pop13 i32.store 8($2), $7 - block + block i32.const $push34=, 4 i32.add $push14=, $5, $pop34 i32.load $push33=, 0($pop14) @@ -204,12 +204,12 @@ DUPFFexgcd: # @DUPFFexgcd i32.lt_s $3=, $pop0, $5 .LBB7_7: # %while.cond40.preheader # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: br_if 0, $3 # 0: up to label5 .LBB7_8: # %while.cond40 # =>This Inner Loop Header: Depth=1 end_loop - loop # label6: + loop # label6: br 0 # 0: up to label6 .LBB7_9: # %if.end57 end_loop @@ -303,7 +303,7 @@ main: # @main .size .L.str.1, 41 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype calloc, i32, i32, i32 .functype printf, i32, i32 diff --git a/test/torture-s/20020411-1.c.s b/test/torture-s/20020411-1.c.s index 7033a5564..e491cd84f 100644 --- a/test/torture-s/20020411-1.c.s +++ b/test/torture-s/20020411-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020413-1.c.s b/test/torture-s/20020413-1.c.s index d63e9e466..cf345f7c0 100644 --- a/test/torture-s/20020413-1.c.s +++ b/test/torture-s/20020413-1.c.s @@ -22,9 +22,9 @@ test: # @test i64.const $push97=, 0 i32.call $3=, __lttf2@FUNCTION, $0, $1, $pop98, $pop97 i32.const $4=, 0 - block - block - block + block + block + block i64.load $push4=, 0($5) i32.const $push96=, 0 i32.lt_s $push95=, $3, $pop96 @@ -285,6 +285,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020418-1.c.s b/test/torture-s/20020418-1.c.s index 60c5cc2ed..993f8f68b 100644 --- a/test/torture-s/20020418-1.c.s +++ b/test/torture-s/20020418-1.c.s @@ -8,7 +8,7 @@ gcc_crash: # @gcc_crash .param i32 .local i32, i32 # BB#0: # %entry - block + block i32.load $push4=, 0($0) tee_local $push3=, $2=, $pop4 i32.const $push0=, 52 @@ -19,7 +19,7 @@ gcc_crash: # @gcc_crash i32.gt_s $1=, $2, $pop2 .LBB0_2: # %top # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push5=, 1 i32.add $2=, $2, $pop5 br_if 0, $1 # 0: up to label1 @@ -63,5 +63,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020423-1.c.s b/test/torture-s/20020423-1.c.s index 669acaf64..ea378589c 100644 --- a/test/torture-s/20020423-1.c.s +++ b/test/torture-s/20020423-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020503-1.c.s b/test/torture-s/20020503-1.c.s index 276ff7cca..32d86c343 100644 --- a/test/torture-s/20020503-1.c.s +++ b/test/torture-s/20020503-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20020506-1.c.s b/test/torture-s/20020506-1.c.s index b7543fdf6..4df37b351 100644 --- a/test/torture-s/20020506-1.c.s +++ b/test/torture-s/20020506-1.c.s @@ -7,9 +7,9 @@ test1: # @test1 .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 0 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label2 @@ -41,9 +41,9 @@ test1: # @test1 test2: # @test2 .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 24 i32.shl $push1=, $0, $pop0 i32.const $push5=, 24 @@ -79,9 +79,9 @@ test2: # @test2 test3: # @test3 .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 0 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label8 @@ -113,9 +113,9 @@ test3: # @test3 test4: # @test4 .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 16 i32.shl $push1=, $0, $pop0 i32.const $push5=, 16 @@ -151,9 +151,9 @@ test4: # @test4 test5: # @test5 .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 0 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label14 @@ -185,9 +185,9 @@ test5: # @test5 test6: # @test6 .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 0 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label17 @@ -219,9 +219,9 @@ test6: # @test6 test7: # @test7 .param i64, i32 # BB#0: # %entry - block - block - block + block + block + block i64.const $push0=, 0 i64.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label20 @@ -253,9 +253,9 @@ test7: # @test7 test8: # @test8 .param i64, i32 # BB#0: # %entry - block - block - block + block + block + block i64.const $push0=, 0 i64.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label23 @@ -294,5 +294,5 @@ main: # @main .size main, .Lfunc_end8-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20020508-1.c.s b/test/torture-s/20020508-1.c.s index 29f64964e..5be4f747b 100644 --- a/test/torture-s/20020508-1.c.s +++ b/test/torture-s/20020508-1.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32, i32, i32, i32, i32, i32, i32, i64, i64, i64, i32 # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load8_u $push103=, uc($pop2) tee_local $push102=, $0=, $pop103 @@ -264,6 +264,6 @@ shift2: .size shift2, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020508-2.c.s b/test/torture-s/20020508-2.c.s index 3c655a000..964782a8e 100644 --- a/test/torture-s/20020508-2.c.s +++ b/test/torture-s/20020508-2.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32, i32, i32, i32, i32, i32, i32, i64, i64, i64, i64, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load8_s $push125=, c($pop0) tee_local $push124=, $0=, $pop125 @@ -290,6 +290,6 @@ shift2: .size shift2, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020508-3.c.s b/test/torture-s/20020508-3.c.s index 9fe15dc8b..f8e6e391a 100644 --- a/test/torture-s/20020508-3.c.s +++ b/test/torture-s/20020508-3.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32, i32, i32, i32, i32, i32, i32, i64, i64, i64, i64, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load8_s $push125=, c($pop0) tee_local $push124=, $0=, $pop125 @@ -290,6 +290,6 @@ shift2: .size shift2, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020510-1.c.s b/test/torture-s/20020510-1.c.s index 6cc588103..c1e330717 100644 --- a/test/torture-s/20020510-1.c.s +++ b/test/torture-s/20020510-1.c.s @@ -7,9 +7,9 @@ testc: # @testc .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 24 i32.shl $push1=, $0, $pop0 i32.const $push5=, 24 @@ -43,9 +43,9 @@ testc: # @testc tests: # @tests .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 16 i32.shl $push1=, $0, $pop0 i32.const $push5=, 16 @@ -79,9 +79,9 @@ tests: # @tests testi: # @testi .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 1 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label8 @@ -111,9 +111,9 @@ testi: # @testi testl: # @testl .param i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 1 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label11 @@ -150,5 +150,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20020529-1.c.s b/test/torture-s/20020529-1.c.s index 5bff6127f..6ba4b983a 100644 --- a/test/torture-s/20020529-1.c.s +++ b/test/torture-s/20020529-1.c.s @@ -15,9 +15,9 @@ foo: # @foo i32.add $5=, $0, $pop2 .LBB0_1: # %for.cond # =>This Inner Loop Header: Depth=1 - block - block - loop # label2: + block + block + loop # label2: i32.const $push14=, 2 i32.ge_s $push0=, $4, $pop14 br_if 2, $pop0 # 2: down to label0 @@ -33,7 +33,7 @@ foo: # @foo br_if 0, $1 # 0: up to label2 # BB#4: # %if.end3 # in Loop: Header=BB0_1 Depth=1 - block + block i32.const $push17=, 0 i32.store f1.beenhere($pop17), $4 i32.store16 0($5), $3 @@ -90,7 +90,7 @@ f1: # @f1 i32.const $push5=, 1 i32.add $push1=, $pop6, $pop5 i32.store f1.beenhere($pop0), $pop1 - block + block i32.const $push2=, 2 i32.ge_s $push3=, $1, $pop2 br_if 0, $pop3 # 0: down to label4 @@ -141,8 +141,8 @@ main: # @main i32.const $push15=, 0 i32.load $1=, f1.beenhere($pop15) i32.store 4($0), $0 - block - block + block + block i32.const $push14=, 1 i32.gt_s $push0=, $1, $pop14 br_if 0, $pop0 # 0: down to label6 @@ -151,8 +151,8 @@ main: # @main i32.add $0=, $0, $pop2 .LBB3_2: # %f1.exit.i # =>This Inner Loop Header: Depth=1 - block - loop # label8: + block + loop # label8: i32.const $push20=, 1 i32.eq $push1=, $1, $pop20 br_if 1, $pop1 # 1: down to label7 @@ -180,7 +180,7 @@ main: # @main i32.const $push6=, 1 i32.add $push7=, $1, $pop6 i32.store f1.beenhere($pop27), $pop7 - block + block i32.const $push8=, 65535 i32.and $push9=, $2, $pop8 br_if 0, $pop9 # 0: down to label9 @@ -214,6 +214,6 @@ f1.beenhere: .size f1.beenhere, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020611-1.c.s b/test/torture-s/20020611-1.c.s index 0337f0748..ec7951dec 100644 --- a/test/torture-s/20020611-1.c.s +++ b/test/torture-s/20020611-1.c.s @@ -38,7 +38,7 @@ main: # @main i32.store p($pop6), $pop3 i32.const $push2=, 0 i32.store k($pop2), $0 - block + block i32.eqz $push8=, $0 br_if 0, $pop8 # 0: down to label0 # BB#1: # %if.end @@ -81,6 +81,6 @@ k: .size k, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020614-1.c.s b/test/torture-s/20020614-1.c.s index 8b24ba4ff..3b45a15d7 100644 --- a/test/torture-s/20020614-1.c.s +++ b/test/torture-s/20020614-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020615-1.c.s b/test/torture-s/20020615-1.c.s index a7872ad14..6e746686b 100644 --- a/test/torture-s/20020615-1.c.s +++ b/test/torture-s/20020615-1.c.s @@ -46,8 +46,8 @@ line_hints: # @line_hints tee_local $push28=, $6=, $pop29 i32.add $push10=, $pop31, $pop28 i32.xor $6=, $pop10, $6 - block - block + block + block i32.eqz $push60=, $0 br_if 0, $pop60 # 0: down to label1 # BB#1: # %entry @@ -104,7 +104,7 @@ line_hints: # @line_hints main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push2=, main.fh i32.const $push1=, main.gsf i32.const $push0=, main.gsf+8 @@ -168,6 +168,6 @@ main.gsf: .size main.gsf, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020619-1.c.s b/test/torture-s/20020619-1.c.s index 08bb55831..196864447 100644 --- a/test/torture-s/20020619-1.c.s +++ b/test/torture-s/20020619-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20020716-1.c.s b/test/torture-s/20020716-1.c.s index 9d249b513..8ce9fbefa 100644 --- a/test/torture-s/20020716-1.c.s +++ b/test/torture-s/20020716-1.c.s @@ -45,5 +45,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020720-1.c.s b/test/torture-s/20020720-1.c.s index 87da9afa2..e11570025 100644 --- a/test/torture-s/20020720-1.c.s +++ b/test/torture-s/20020720-1.c.s @@ -26,4 +26,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20020805-1.c.s b/test/torture-s/20020805-1.c.s index 30ccd7bba..47992ead5 100644 --- a/test/torture-s/20020805-1.c.s +++ b/test/torture-s/20020805-1.c.s @@ -7,7 +7,7 @@ check: # @check .param i32 # BB#0: # %entry - block + block i32.const $push0=, -1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -57,6 +57,6 @@ n: .size n, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20020810-1.c.s b/test/torture-s/20020810-1.c.s index d0f12bc42..17f137b87 100644 --- a/test/torture-s/20020810-1.c.s +++ b/test/torture-s/20020810-1.c.s @@ -7,7 +7,7 @@ f: # @f .param i32 # BB#0: # %entry - block + block i32.load $push1=, 0($0) i32.const $push6=, 0 i32.load $push0=, R($pop6) @@ -52,7 +52,7 @@ main: # @main .result i32 .local i64 # BB#0: # %f.exit - block + block i32.const $push12=, 0 i64.load $push11=, R($pop12) tee_local $push10=, $0=, $pop11 @@ -91,5 +91,5 @@ R: .size R, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20020819-1.c.s b/test/torture-s/20020819-1.c.s index 4f9b1a2bf..92e221c8c 100644 --- a/test/torture-s/20020819-1.c.s +++ b/test/torture-s/20020819-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20020904-1.c.s b/test/torture-s/20020904-1.c.s index 91b951473..a66886a4e 100644 --- a/test/torture-s/20020904-1.c.s +++ b/test/torture-s/20020904-1.c.s @@ -29,4 +29,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20020911-1.c.s b/test/torture-s/20020911-1.c.s index 701d4e92d..8ec400215 100644 --- a/test/torture-s/20020911-1.c.s +++ b/test/torture-s/20020911-1.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load16_s $push11=, c($pop1) tee_local $push10=, $0=, $pop11 @@ -44,5 +44,5 @@ c: .size c, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20020916-1.c.s b/test/torture-s/20020916-1.c.s index 6beb5b40f..bc020975e 100644 --- a/test/torture-s/20020916-1.c.s +++ b/test/torture-s/20020916-1.c.s @@ -32,4 +32,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20020920-1.c.s b/test/torture-s/20020920-1.c.s index ef1a036d4..1fe1d1b4f 100644 --- a/test/torture-s/20020920-1.c.s +++ b/test/torture-s/20020920-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20021010-1.c.s b/test/torture-s/20021010-1.c.s index d771b3e92..cbfc63d47 100644 --- a/test/torture-s/20021010-1.c.s +++ b/test/torture-s/20021010-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20021010-2.c.s b/test/torture-s/20021010-2.c.s index 2608ae61b..db8a6fd23 100644 --- a/test/torture-s/20021010-2.c.s +++ b/test/torture-s/20021010-2.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push19=, 0 i32.load16_s $push18=, global_bounds+2($pop19) tee_local $push17=, $0=, $pop18 @@ -85,6 +85,6 @@ global_saveRect: .size global_saveRect, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20021011-1.c.s b/test/torture-s/20021011-1.c.s index 6e060dfca..fa9a29808 100644 --- a/test/torture-s/20021011-1.c.s +++ b/test/torture-s/20021011-1.c.s @@ -18,7 +18,7 @@ main: # @main i64.load $push38=, .L.str($pop39):p2align=0 tee_local $push37=, $1=, $pop38 i64.store buf($pop40), $pop37 - block + block i32.const $push36=, buf i32.const $push35=, .L.str i32.call $push0=, strcmp@FUNCTION, $pop36, $pop35 @@ -240,6 +240,6 @@ buf: .size .L.str, 9 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/20021015-1.c.s b/test/torture-s/20021015-1.c.s index b316e04bb..415214e08 100644 --- a/test/torture-s/20021015-1.c.s +++ b/test/torture-s/20021015-1.c.s @@ -7,7 +7,7 @@ g: # @g .param i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.load $push0=, 0($4) i32.const $push1=, g_list i32.ne $push2=, $pop0, $pop1 @@ -32,7 +32,7 @@ g: # @g main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load8_u $push0=, g_list($pop1) i32.eqz $push5=, $pop0 @@ -58,5 +58,5 @@ g_list: .size g_list, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20021024-1.c.s b/test/torture-s/20021024-1.c.s index 31f2c5bfb..7f870aea6 100644 --- a/test/torture-s/20021024-1.c.s +++ b/test/torture-s/20021024-1.c.s @@ -35,7 +35,7 @@ bar: # @bar i32.load $0=, cp($pop15) .LBB1_1: # %top # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i64.const $push19=, 1 i64.store 0($0), $pop19 i32.const $push18=, 0 @@ -125,5 +125,5 @@ main.r: .size main.r, 512 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20021111-1.c.s b/test/torture-s/20021111-1.c.s index 3353ee76d..4cd89edd2 100644 --- a/test/torture-s/20021111-1.c.s +++ b/test/torture-s/20021111-1.c.s @@ -8,8 +8,8 @@ aim_callhandler: # @aim_callhandler .param i32, i32, i32, i32 .result i32 # BB#0: # %entry - block - block + block + block i32.eqz $push11=, $1 br_if 0, $pop11 # 0: down to label1 # BB#1: # %entry @@ -67,6 +67,6 @@ aim_callhandler.i: .size aim_callhandler.i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20021113-1.c.s b/test/torture-s/20021113-1.c.s index 6fcb2891e..0bbaf2508 100644 --- a/test/torture-s/20021113-1.c.s +++ b/test/torture-s/20021113-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20021118-1.c.s b/test/torture-s/20021118-1.c.s index 5c2e0edb5..1468861b0 100644 --- a/test/torture-s/20021118-1.c.s +++ b/test/torture-s/20021118-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20021118-2.c.s b/test/torture-s/20021118-2.c.s index 0fe9cf765..7c82344e4 100644 --- a/test/torture-s/20021118-2.c.s +++ b/test/torture-s/20021118-2.c.s @@ -63,7 +63,7 @@ t2: # @t2 f1: # @f1 .param f64 # BB#0: # %entry - block + block f64.const $push0=, 0x1.8p1 f64.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -84,7 +84,7 @@ f1: # @f1 f2: # @f2 .param f32, f32 # BB#0: # %entry - block + block f32.const $push0=, 0x1.4p1 f32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -109,7 +109,7 @@ f2: # @f2 f3: # @f3 .param f32 # BB#0: # %entry - block + block f32.const $push0=, 0x1.8p2 f32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label2 @@ -138,6 +138,6 @@ main: # @main .size main, .Lfunc_end5-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20021118-3.c.s b/test/torture-s/20021118-3.c.s index e1690a627..18ec2de05 100644 --- a/test/torture-s/20021118-3.c.s +++ b/test/torture-s/20021118-3.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push2=, -2 i32.eq $push3=, $0, $pop2 br_if 0, $pop3 # 0: down to label0 @@ -44,6 +44,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20021119-1.c.s b/test/torture-s/20021119-1.c.s index 6107abc3a..457fdb391 100644 --- a/test/torture-s/20021119-1.c.s +++ b/test/torture-s/20021119-1.c.s @@ -33,4 +33,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20021120-1.c.s b/test/torture-s/20021120-1.c.s index 665fd6e31..02e36f92f 100644 --- a/test/torture-s/20021120-1.c.s +++ b/test/torture-s/20021120-1.c.s @@ -72,14 +72,14 @@ foo: # @foo f64.load $130=, gd+240($pop67) i32.const $push66=, 0 f64.load $129=, gd+248($pop66) - block + block i32.const $push0=, 1 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 # BB#1: # %for.body.preheader .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push260=, 0 f32.load $1=, gf($pop260) i32.const $push259=, 0 @@ -586,7 +586,7 @@ main: # @main i32.const $3=, gf .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: f64.store 0($2), $0 f32.convert_s/i32 $push0=, $1 f32.store 0($3), $pop0 @@ -611,8 +611,8 @@ main: # @main i32.const $3=, 0 .LBB1_3: # %for.body6 # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: f64.load $push3=, 0($2) f64.convert_s/i32 $push2=, $1 f64.ne $push4=, $pop3, $pop2 @@ -669,6 +669,6 @@ gf: .size gf, 128 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20021120-2.c.s b/test/torture-s/20021120-2.c.s index 57909ed50..d73f18e0d 100644 --- a/test/torture-s/20021120-2.c.s +++ b/test/torture-s/20021120-2.c.s @@ -58,5 +58,5 @@ g2: .size g2, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20021120-3.c.s b/test/torture-s/20021120-3.c.s index 34e21f621..7345714d3 100644 --- a/test/torture-s/20021120-3.c.s +++ b/test/torture-s/20021120-3.c.s @@ -69,6 +69,6 @@ main: # @main .size .L.str, 3 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype sprintf, i32, i32, i32 .functype exit, void, i32 diff --git a/test/torture-s/20021127-1.c.s b/test/torture-s/20021127-1.c.s index c55416003..5f47eb569 100644 --- a/test/torture-s/20021127-1.c.s +++ b/test/torture-s/20021127-1.c.s @@ -37,5 +37,5 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20021204-1.c.s b/test/torture-s/20021204-1.c.s index 9fd3e8e87..23c7af832 100644 --- a/test/torture-s/20021204-1.c.s +++ b/test/torture-s/20021204-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -54,6 +54,6 @@ z: .size z, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20021219-1.c.s b/test/torture-s/20021219-1.c.s index 956d9b55e..1875361d5 100644 --- a/test/torture-s/20021219-1.c.s +++ b/test/torture-s/20021219-1.c.s @@ -43,9 +43,9 @@ main: # @main i32.const $1=, 32 .LBB1_1: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label1: - block + block + loop # label1: + block i32.const $push24=, 255 i32.and $push23=, $1, $pop24 tee_local $push22=, $1=, $pop23 @@ -81,4 +81,4 @@ main: # @main .size .Lmain.str, 11 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030105-1.c.s b/test/torture-s/20030105-1.c.s index 50e17c3d2..050cbac04 100644 --- a/test/torture-s/20030105-1.c.s +++ b/test/torture-s/20030105-1.c.s @@ -20,7 +20,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.call $push1=, foo@FUNCTION i32.const $push0=, 28 i32.ne $push2=, $pop1, $pop0 @@ -38,6 +38,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20030109-1.c.s b/test/torture-s/20030109-1.c.s index 11d44a724..662e18065 100644 --- a/test/torture-s/20030109-1.c.s +++ b/test/torture-s/20030109-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, x+4($pop3) i32.const $push1=, 40 @@ -35,5 +35,5 @@ x: .size x, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20030117-1.c.s b/test/torture-s/20030117-1.c.s index 314c3ffe7..cacb484af 100644 --- a/test/torture-s/20030117-1.c.s +++ b/test/torture-s/20030117-1.c.s @@ -52,5 +52,5 @@ bar: # @bar .size bar, .Lfunc_end2-bar - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030120-1.c.s b/test/torture-s/20030120-1.c.s index 858239218..6966963e1 100644 --- a/test/torture-s/20030120-1.c.s +++ b/test/torture-s/20030120-1.c.s @@ -60,5 +60,5 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030120-2.c.s b/test/torture-s/20030120-2.c.s index 907d55f34..c9f9134e6 100644 --- a/test/torture-s/20030120-2.c.s +++ b/test/torture-s/20030120-2.c.s @@ -37,4 +37,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030125-1.c.s b/test/torture-s/20030125-1.c.s index 3107d27e6..688493e59 100644 --- a/test/torture-s/20030125-1.c.s +++ b/test/torture-s/20030125-1.c.s @@ -116,5 +116,5 @@ sinf: # @sinf .size sinf, .Lfunc_end7-sinf - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20030128-1.c.s b/test/torture-s/20030128-1.c.s index fc9895b33..f2a22fae4 100644 --- a/test/torture-s/20030128-1.c.s +++ b/test/torture-s/20030128-1.c.s @@ -16,7 +16,7 @@ main: # @main i32.div_s $push6=, $pop0, $0 tee_local $push5=, $0=, $pop6 i32.store8 x($pop8), $pop5 - block + block i32.const $push1=, 255 i32.and $push2=, $0, $pop1 i32.const $push3=, 246 @@ -52,6 +52,6 @@ y: .size y, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20030203-1.c.s b/test/torture-s/20030203-1.c.s index 14d93ba02..eb598642e 100644 --- a/test/torture-s/20030203-1.c.s +++ b/test/torture-s/20030203-1.c.s @@ -43,4 +43,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030209-1.c.s b/test/torture-s/20030209-1.c.s index 7f73b5e45..9ccf485cb 100644 --- a/test/torture-s/20030209-1.c.s +++ b/test/torture-s/20030209-1.c.s @@ -27,5 +27,5 @@ x: .size x, 80000 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030216-1.c.s b/test/torture-s/20030216-1.c.s index b8212e736..050d0b0a5 100644 --- a/test/torture-s/20030216-1.c.s +++ b/test/torture-s/20030216-1.c.s @@ -23,4 +23,4 @@ one: .size one, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030218-1.c.s b/test/torture-s/20030218-1.c.s index f10db6f90..b272cf1ac 100644 --- a/test/torture-s/20030218-1.c.s +++ b/test/torture-s/20030218-1.c.s @@ -56,5 +56,5 @@ q: .size q, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030221-1.c.s b/test/torture-s/20030221-1.c.s index 85ae3bd64..213509657 100644 --- a/test/torture-s/20030221-1.c.s +++ b/test/torture-s/20030221-1.c.s @@ -24,7 +24,7 @@ main: # @main i32.call $push14=, strlen@FUNCTION, $1 tee_local $push13=, $0=, $pop14 i32.store8 0($1), $pop13 - block + block i32.const $push2=, 255 i32.and $push3=, $0, $pop2 i32.const $push4=, 10 @@ -53,6 +53,6 @@ main: # @main .size .Lmain.buf, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strlen, i32, i32 .functype abort, void diff --git a/test/torture-s/20030222-1.c.s b/test/torture-s/20030222-1.c.s index 9824fe7c4..edd4692b1 100644 --- a/test/torture-s/20030222-1.c.s +++ b/test/torture-s/20030222-1.c.s @@ -37,7 +37,7 @@ main: # @main #APP #NO_APP i64.store32 12($2), $0 - block + block i32.load $push0=, 12($2) i32.ne $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -63,6 +63,6 @@ val: .size val, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20030224-2.c.s b/test/torture-s/20030224-2.c.s index f42c5788b..8b0e5e161 100644 --- a/test/torture-s/20030224-2.c.s +++ b/test/torture-s/20030224-2.c.s @@ -32,4 +32,4 @@ node_p: .size node_p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030307-1.c.s b/test/torture-s/20030307-1.c.s index be848c4c6..57d424eb7 100644 --- a/test/torture-s/20030307-1.c.s +++ b/test/torture-s/20030307-1.c.s @@ -42,4 +42,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030313-1.c.s b/test/torture-s/20030313-1.c.s index 8abedf5bd..e78978adf 100644 --- a/test/torture-s/20030313-1.c.s +++ b/test/torture-s/20030313-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 12 i32.ne $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -142,6 +142,6 @@ x: .size x, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20030316-1.c.s b/test/torture-s/20030316-1.c.s index 013604ef6..81be12832 100644 --- a/test/torture-s/20030316-1.c.s +++ b/test/torture-s/20030316-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030330-1.c.s b/test/torture-s/20030330-1.c.s index cad06dd75..dd6e76312 100644 --- a/test/torture-s/20030330-1.c.s +++ b/test/torture-s/20030330-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030401-1.c.s b/test/torture-s/20030401-1.c.s index 568b4f5c3..57d0a9869 100644 --- a/test/torture-s/20030401-1.c.s +++ b/test/torture-s/20030401-1.c.s @@ -39,4 +39,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030403-1.c.s b/test/torture-s/20030403-1.c.s index 3c91e1c4f..1548d4e6c 100644 --- a/test/torture-s/20030403-1.c.s +++ b/test/torture-s/20030403-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030404-1.c.s b/test/torture-s/20030404-1.c.s index e43e9bbe4..1a8d8f0a6 100644 --- a/test/torture-s/20030404-1.c.s +++ b/test/torture-s/20030404-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030408-1.c.s b/test/torture-s/20030408-1.c.s index 95b3489d1..d375e6f93 100644 --- a/test/torture-s/20030408-1.c.s +++ b/test/torture-s/20030408-1.c.s @@ -66,4 +66,4 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030606-1.c.s b/test/torture-s/20030606-1.c.s index 427cd96cf..86ef44224 100644 --- a/test/torture-s/20030606-1.c.s +++ b/test/torture-s/20030606-1.c.s @@ -10,7 +10,7 @@ foo: # @foo # BB#0: # %entry i32.const $push0=, 55 i32.store 0($0), $pop0 - block + block i32.eqz $push7=, $1 br_if 0, $pop7 # 0: down to label0 # BB#1: # %if.then @@ -44,5 +44,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030613-1.c.s b/test/torture-s/20030613-1.c.s index 48d6ac401..9e54cdf66 100644 --- a/test/torture-s/20030613-1.c.s +++ b/test/torture-s/20030613-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030626-1.c.s b/test/torture-s/20030626-1.c.s index ae74fbbce..26e98b50e 100644 --- a/test/torture-s/20030626-1.c.s +++ b/test/torture-s/20030626-1.c.s @@ -26,4 +26,4 @@ buf: .size buf, 10 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030626-2.c.s b/test/torture-s/20030626-2.c.s index b4ca787f2..e2766cb2e 100644 --- a/test/torture-s/20030626-2.c.s +++ b/test/torture-s/20030626-2.c.s @@ -41,4 +41,4 @@ buf: .size .L.str.2, 13 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030714-1.c.s b/test/torture-s/20030714-1.c.s index def381caf..7bd5dfaf2 100644 --- a/test/torture-s/20030714-1.c.s +++ b/test/torture-s/20030714-1.c.s @@ -9,8 +9,8 @@ RenderBox_setStyle: # @RenderBox_setStyle .local i32, i32 # BB#0: # %entry i32.const $3=, 16 - block - block + block + block i32.const $push0=, 2 i32.add $push1=, $1, $pop0 i32.load8_u $push2=, 0($pop1) @@ -18,7 +18,7 @@ RenderBox_setStyle: # @RenderBox_setStyle i32.and $push4=, $pop2, $pop3 br_if 0, $pop4 # 0: down to label1 # BB#1: # %sw.default - block + block i32.load16_u $push26=, 26($0) tee_local $push25=, $3=, $pop26 i32.const $push24=, 16 @@ -40,7 +40,7 @@ RenderBox_setStyle: # @RenderBox_setStyle i32.and $push10=, $3, $pop9 i32.store16 0($pop12), $pop10 i32.load $2=, 0($1) - block + block i32.load $push14=, 28($0) i32.call_indirect $push15=, $pop14, $0 br_if 0, $pop15 # 0: down to label3 @@ -179,5 +179,5 @@ g__style: .size g__style, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030715-1.c.s b/test/torture-s/20030715-1.c.s index 91f058304..ae3c4b136 100644 --- a/test/torture-s/20030715-1.c.s +++ b/test/torture-s/20030715-1.c.s @@ -24,8 +24,8 @@ server_type: # @server_type .local i32, i32 # BB#0: # %entry i32.const $3=, 0 - block - block + block + block i32.const $push0=, .L.str i32.call $push1=, strcmp@FUNCTION, $2, $pop0 i32.eqz $push5=, $pop1 @@ -92,5 +92,5 @@ ap_standalone: .size .L.str.2, 50 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/20030717-1.c.s b/test/torture-s/20030717-1.c.s index 269a1b466..3f3ede2f1 100644 --- a/test/torture-s/20030717-1.c.s +++ b/test/torture-s/20030717-1.c.s @@ -29,8 +29,8 @@ bar: # @bar copy_local $7=, $2 .LBB0_1: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label0: - block + loop # label0: + block i32.const $push29=, 0 i32.gt_s $push4=, $1, $pop29 br_if 0, $pop4 # 0: down to label1 @@ -89,4 +89,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030718-1.c.s b/test/torture-s/20030718-1.c.s index 4f0eae36a..113612ee8 100644 --- a/test/torture-s/20030718-1.c.s +++ b/test/torture-s/20030718-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030821-1.c.s b/test/torture-s/20030821-1.c.s index b58da5e6a..f9ba25a33 100644 --- a/test/torture-s/20030821-1.c.s +++ b/test/torture-s/20030821-1.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, -2130706433 i32.and $push1=, $0, $pop0 i32.const $push2=, -2147418114 @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20030828-1.c.s b/test/torture-s/20030828-1.c.s index 4b49daadb..c4c22b40a 100644 --- a/test/torture-s/20030828-1.c.s +++ b/test/torture-s/20030828-1.c.s @@ -55,5 +55,5 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030828-2.c.s b/test/torture-s/20030828-2.c.s index 219016211..0c4deae28 100644 --- a/test/torture-s/20030828-2.c.s +++ b/test/torture-s/20030828-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030903-1.c.s b/test/torture-s/20030903-1.c.s index a0a6fb659..db8851efa 100644 --- a/test/torture-s/20030903-1.c.s +++ b/test/torture-s/20030903-1.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push6=, 0 i32.load $push0=, test($pop6) i32.const $push1=, -1 @@ -22,7 +22,7 @@ main: # @main return $pop7 .LBB0_2: # %entry end_block # label0: - block + block br_table $0, 0, 0, 0, 0, 0 # 0: down to label1 .LBB0_3: # %sw.bb3 end_block # label1: @@ -50,5 +50,5 @@ test: .size test, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20030909-1.c.s b/test/torture-s/20030909-1.c.s index 6d17d0cdc..353939fc2 100644 --- a/test/torture-s/20030909-1.c.s +++ b/test/torture-s/20030909-1.c.s @@ -7,7 +7,7 @@ test: # @test .param i32, i32 # BB#0: # %entry - block + block i32.eq $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -47,6 +47,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20030910-1.c.s b/test/torture-s/20030910-1.c.s index 6ea33feb8..856c6b4ad 100644 --- a/test/torture-s/20030910-1.c.s +++ b/test/torture-s/20030910-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030913-1.c.s b/test/torture-s/20030913-1.c.s index 98240f0fa..523deeeca 100644 --- a/test/torture-s/20030913-1.c.s +++ b/test/torture-s/20030913-1.c.s @@ -55,5 +55,5 @@ glob: .size glob, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030914-1.c.s b/test/torture-s/20030914-1.c.s index ff8e37f6c..2efe0b526 100644 --- a/test/torture-s/20030914-1.c.s +++ b/test/torture-s/20030914-1.c.s @@ -343,5 +343,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030914-2.c.s b/test/torture-s/20030914-2.c.s index 2d39f7458..ea538227a 100644 --- a/test/torture-s/20030914-2.c.s +++ b/test/torture-s/20030914-2.c.s @@ -38,5 +38,5 @@ gs: .size gs, 72 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20030916-1.c.s b/test/torture-s/20030916-1.c.s index 961d20bfa..f33b83d4e 100644 --- a/test/torture-s/20030916-1.c.s +++ b/test/torture-s/20030916-1.c.s @@ -62,7 +62,7 @@ main: # @main i32.const $0=, 0 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.add $push0=, $2, $0 i32.const $push31=, 1 i32.store 0($pop0), $pop31 @@ -108,8 +108,8 @@ main: # @main copy_local $0=, $2 .LBB1_3: # %for.body3 # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.load $push17=, 0($0) i32.const $push41=, -8 i32.add $push15=, $1, $pop41 @@ -141,6 +141,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20030920-1.c.s b/test/torture-s/20030920-1.c.s index b3190a7b7..0ceb13d65 100644 --- a/test/torture-s/20030920-1.c.s +++ b/test/torture-s/20030920-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20030928-1.c.s b/test/torture-s/20030928-1.c.s index 4857831fb..99ea9d0ab 100644 --- a/test/torture-s/20030928-1.c.s +++ b/test/torture-s/20030928-1.c.s @@ -116,5 +116,5 @@ main: # @main .size .L.str.7, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20031003-1.c.s b/test/torture-s/20031003-1.c.s index c961bbba3..bcf90c2dd 100644 --- a/test/torture-s/20031003-1.c.s +++ b/test/torture-s/20031003-1.c.s @@ -42,4 +42,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20031010-1.c.s b/test/torture-s/20031010-1.c.s index b5bd0d7ed..fe040595a 100644 --- a/test/torture-s/20031010-1.c.s +++ b/test/torture-s/20031010-1.c.s @@ -8,11 +8,11 @@ foo: # @foo .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.eqz $push4=, $2 br_if 0, $pop4 # 0: down to label0 # BB#1: # %if.then - block + block i32.eqz $push5=, $3 br_if 0, $pop5 # 0: down to label1 # BB#2: # %if.then4 @@ -39,7 +39,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push2=, 2 i32.const $push1=, 3 i32.const $push0=, 1 @@ -60,5 +60,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20031011-1.c.s b/test/torture-s/20031011-1.c.s index fe0a0dc02..d73a6c212 100644 --- a/test/torture-s/20031011-1.c.s +++ b/test/torture-s/20031011-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20031012-1.c.s b/test/torture-s/20031012-1.c.s index ee72b89db..e81c0d0e2 100644 --- a/test/torture-s/20031012-1.c.s +++ b/test/torture-s/20031012-1.c.s @@ -22,7 +22,7 @@ main: # @main tee_local $push13=, $2=, $pop14 i32.const $push12=, 0 i32.store8 13371($pop13), $pop12 - block + block i32.call $push2=, strlen@FUNCTION, $2 i32.const $push11=, 13371 i32.ne $push3=, $pop2, $pop11 @@ -43,6 +43,6 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strlen, i32, i32 .functype abort, void diff --git a/test/torture-s/20031020-1.c.s b/test/torture-s/20031020-1.c.s index fdd531e5b..69cfa3adb 100644 --- a/test/torture-s/20031020-1.c.s +++ b/test/torture-s/20031020-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1024 i32.ge_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20031201-1.c.s b/test/torture-s/20031201-1.c.s index f1328d578..ed6210993 100644 --- a/test/torture-s/20031201-1.c.s +++ b/test/torture-s/20031201-1.c.s @@ -42,7 +42,7 @@ f0: # @f0 i32.const $push0=, 1 i32.add $push1=, $pop6, $pop0 i32.store f0.washere($pop9), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %lor.lhs.false i32.const $push13=, 0 @@ -74,7 +74,7 @@ f0: # @f0 test: # @test .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push8=, i($pop0) tee_local $push7=, $0=, $pop8 @@ -137,6 +137,6 @@ f0.washere: .size f0.washere, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20031204-1.c.s b/test/torture-s/20031204-1.c.s index a79083108..8dde906c1 100644 --- a/test/torture-s/20031204-1.c.s +++ b/test/torture-s/20031204-1.c.s @@ -28,15 +28,15 @@ root_nfs_parse_addr: # @root_nfs_parse_addr .LBB1_1: # %while.cond1.preheader # =>This Loop Header: Depth=1 # Child Loop BB1_2 Depth 2 - block - block - loop # label2: + block + block + loop # label2: i32.const $5=, 0 copy_local $6=, $4 .LBB1_2: # %while.cond1 # Parent Loop BB1_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label3: + loop # label3: copy_local $push30=, $6 tee_local $push29=, $7=, $pop30 i32.const $push28=, 1 @@ -58,7 +58,7 @@ root_nfs_parse_addr: # @root_nfs_parse_addr # BB#3: # %while.end # in Loop: Header=BB1_1 Depth=1 end_loop - block + block i32.const $push31=, 1 i32.eq $push4=, $2, $pop31 br_if 0, $pop4 # 0: down to label4 @@ -101,12 +101,12 @@ root_nfs_parse_addr: # @root_nfs_parse_addr .LBB1_8: # %while.end25 end_block # label0: i32.const $5=, -1 - block + block i32.const $push14=, 4 i32.ne $push15=, $1, $pop14 br_if 0, $pop15 # 0: down to label5 # BB#9: # %land.lhs.true - block + block i32.load8_u $push43=, 0($7) tee_local $push42=, $6=, $pop43 i32.eqz $push44=, $pop42 @@ -145,15 +145,15 @@ main: # @main .LBB2_1: # %while.cond1.preheader.i # =>This Loop Header: Depth=1 # Child Loop BB2_2 Depth 2 - block - block - loop # label9: + block + block + loop # label9: i32.const $4=, 0 copy_local $5=, $3 .LBB2_2: # %while.cond1.i # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label10: + loop # label10: copy_local $push32=, $5 tee_local $push31=, $6=, $pop32 i32.const $push30=, 1 @@ -175,7 +175,7 @@ main: # @main # BB#3: # %while.end.i # in Loop: Header=BB2_1 Depth=1 end_loop - block + block i32.const $push33=, 1 i32.eq $push4=, $1, $pop33 br_if 0, $pop4 # 0: down to label11 @@ -217,12 +217,12 @@ main: # @main i32.add $6=, $pop12, $pop13 .LBB2_8: # %while.end25.i end_block # label7: - block + block i32.const $push14=, 4 i32.ne $push15=, $0, $pop14 br_if 0, $pop15 # 0: down to label12 # BB#9: # %land.lhs.true.i - block + block i32.load8_u $push45=, 0($6) tee_local $push44=, $4=, $pop45 i32.eqz $push46=, $pop44 @@ -258,6 +258,6 @@ main.addr: .size main.addr, 19 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcpy, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/20031211-1.c.s b/test/torture-s/20031211-1.c.s index 67e5bac15..1367355a1 100644 --- a/test/torture-s/20031211-1.c.s +++ b/test/torture-s/20031211-1.c.s @@ -27,5 +27,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20031211-2.c.s b/test/torture-s/20031211-2.c.s index d638db7a9..72398acb1 100644 --- a/test/torture-s/20031211-2.c.s +++ b/test/torture-s/20031211-2.c.s @@ -22,7 +22,7 @@ foo: # @foo .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 3 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,6 +37,6 @@ foo: # @foo .size foo, .Lfunc_end1-foo - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20031214-1.c.s b/test/torture-s/20031214-1.c.s index bf2c52ce1..6ed5de912 100644 --- a/test/torture-s/20031214-1.c.s +++ b/test/torture-s/20031214-1.c.s @@ -65,4 +65,4 @@ k: .size k, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20031215-1.c.s b/test/torture-s/20031215-1.c.s index f3320d2dc..b13bd2239 100644 --- a/test/torture-s/20031215-1.c.s +++ b/test/torture-s/20031215-1.c.s @@ -68,4 +68,4 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20031216-1.c.s b/test/torture-s/20031216-1.c.s index 0c642539a..e87599783 100644 --- a/test/torture-s/20031216-1.c.s +++ b/test/torture-s/20031216-1.c.s @@ -7,7 +7,7 @@ DisplayNumber: # @DisplayNumber .param i32 # BB#0: # %entry - block + block i32.const $push0=, 154 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -48,5 +48,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20040208-1.c.s b/test/torture-s/20040208-1.c.s index 495756fe1..b8325a24e 100644 --- a/test/torture-s/20040208-1.c.s +++ b/test/torture-s/20040208-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20040218-1.c.s b/test/torture-s/20040218-1.c.s index 322c76806..f01673063 100644 --- a/test/torture-s/20040218-1.c.s +++ b/test/torture-s/20040218-1.c.s @@ -71,7 +71,7 @@ main: # @main i64.store 8($0), $pop0 i32.const $push1=, 1048641535 i32.store 4($0), $pop1 - block + block i32.const $push16=, 8 i32.add $push17=, $0, $pop16 i32.call $push3=, xb@FUNCTION, $pop17 @@ -105,6 +105,6 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20040223-1.c.s b/test/torture-s/20040223-1.c.s index ad85e3c88..1cc9ba47b 100644 --- a/test/torture-s/20040223-1.c.s +++ b/test/torture-s/20040223-1.c.s @@ -7,7 +7,7 @@ a: # @a .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 1234 i32.ne $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -35,5 +35,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20040307-1.c.s b/test/torture-s/20040307-1.c.s index 0cec82a74..2aefbfcbe 100644 --- a/test/torture-s/20040307-1.c.s +++ b/test/torture-s/20040307-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040309-1.c.s b/test/torture-s/20040309-1.c.s index 3a4ca63a5..a15c6744d 100644 --- a/test/torture-s/20040309-1.c.s +++ b/test/torture-s/20040309-1.c.s @@ -10,7 +10,7 @@ foo: # @foo .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.const $push0=, 16 i32.shl $push1=, $0, $pop0 i32.const $push8=, 16 @@ -45,4 +45,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040311-1.c.s b/test/torture-s/20040311-1.c.s index 54ced1fdc..9f9f16a68 100644 --- a/test/torture-s/20040311-1.c.s +++ b/test/torture-s/20040311-1.c.s @@ -74,4 +74,4 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040313-1.c.s b/test/torture-s/20040313-1.c.s index 0b243a12b..08d201a37 100644 --- a/test/torture-s/20040313-1.c.s +++ b/test/torture-s/20040313-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040319-1.c.s b/test/torture-s/20040319-1.c.s index 66e987343..ac157824d 100644 --- a/test/torture-s/20040319-1.c.s +++ b/test/torture-s/20040319-1.c.s @@ -34,5 +34,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20040331-1.c.s b/test/torture-s/20040331-1.c.s index 3ae24a26f..ac0434940 100644 --- a/test/torture-s/20040331-1.c.s +++ b/test/torture-s/20040331-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20040409-1.c.s b/test/torture-s/20040409-1.c.s index 15456d534..8f1f4674f 100644 --- a/test/torture-s/20040409-1.c.s +++ b/test/torture-s/20040409-1.c.s @@ -187,7 +187,7 @@ test6u: # @test6u test: # @test .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, -2147483648 i32.xor $push1=, $0, $pop0 i32.ne $push2=, $pop1, $1 @@ -209,7 +209,7 @@ test: # @test testu: # @testu .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, -2147483648 i32.xor $push1=, $0, $pop0 i32.ne $push2=, $pop1, $1 @@ -238,5 +238,5 @@ main: # @main .size main, .Lfunc_end14-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20040409-2.c.s b/test/torture-s/20040409-2.c.s index 464d664ad..48253be07 100644 --- a/test/torture-s/20040409-2.c.s +++ b/test/torture-s/20040409-2.c.s @@ -367,7 +367,7 @@ test12u: # @test12u test: # @test .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, -2147478988 i32.xor $push1=, $0, $pop0 i32.ne $push2=, $pop1, $1 @@ -389,7 +389,7 @@ test: # @test testu: # @testu .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, -2147478988 i32.xor $push1=, $0, $pop0 i32.ne $push2=, $pop1, $1 @@ -418,5 +418,5 @@ main: # @main .size main, .Lfunc_end26-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20040409-3.c.s b/test/torture-s/20040409-3.c.s index fbba80b90..5bf4b1b33 100644 --- a/test/torture-s/20040409-3.c.s +++ b/test/torture-s/20040409-3.c.s @@ -187,7 +187,7 @@ test6u: # @test6u test: # @test .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 2147483647 i32.xor $push1=, $0, $pop0 i32.ne $push2=, $pop1, $1 @@ -209,7 +209,7 @@ test: # @test testu: # @testu .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 2147483647 i32.xor $push1=, $0, $pop0 i32.ne $push2=, $pop1, $1 @@ -238,5 +238,5 @@ main: # @main .size main, .Lfunc_end14-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20040411-1.c.s b/test/torture-s/20040411-1.c.s index 950e43a50..90e04d8bb 100644 --- a/test/torture-s/20040411-1.c.s +++ b/test/torture-s/20040411-1.c.s @@ -37,4 +37,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040625-1.c.s b/test/torture-s/20040625-1.c.s index 6f3b5a7e0..e282b2fe8 100644 --- a/test/torture-s/20040625-1.c.s +++ b/test/torture-s/20040625-1.c.s @@ -8,7 +8,7 @@ maybe_next: # @maybe_next .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.eqz $push0=, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.then @@ -37,7 +37,7 @@ main: # @main tee_local $push10=, $0=, $pop11 i32.store __stack_pointer($pop7), $pop10 i32.store 8($0), $0 - block + block i32.const $push8=, 8 i32.add $push9=, $0, $pop8 i32.const $push0=, 1 @@ -57,6 +57,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20040629-1.c.s b/test/torture-s/20040629-1.c.s index 73d586b86..f8fe56144 100644 --- a/test/torture-s/20040629-1.c.s +++ b/test/torture-s/20040629-1.c.s @@ -3588,4 +3588,4 @@ d: .size d, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040703-1.c.s b/test/torture-s/20040703-1.c.s index 4d0fee3c4..b7afb0b20 100644 --- a/test/torture-s/20040703-1.c.s +++ b/test/torture-s/20040703-1.c.s @@ -12,13 +12,13 @@ num_lshift: # @num_lshift i32.load $push94=, __stack_pointer($pop93) i32.const $push95=, 16 i32.sub $12=, $pop94, $pop95 - block - block - block - block - block - block - block + block + block + block + block + block + block + block i32.ge_u $push0=, $3, $2 br_if 0, $pop0 # 0: down to label6 # BB#1: # %if.else @@ -29,7 +29,7 @@ num_lshift: # @num_lshift tee_local $push100=, $4=, $pop101 copy_local $9=, $pop100 copy_local $8=, $3 - block + block i32.const $push9=, 32 i32.lt_u $push10=, $3, $pop9 br_if 0, $pop10 # 0: down to label7 @@ -77,8 +77,8 @@ num_lshift: # @num_lshift i32.const $push22=, 8 i32.add $push23=, $1, $pop22 i64.load $6=, 0($pop23):p2align=2 - block - block + block + block i32.const $push20=, 33 i32.lt_u $push21=, $2, $pop20 br_if 0, $pop21 # 0: down to label9 @@ -154,9 +154,9 @@ num_lshift: # @num_lshift i32.shl $push48=, $pop47, $pop46 i32.and $push49=, $pop42, $pop48 i32.select $8=, $pop43, $pop50, $pop49 - block - block - block + block + block + block i32.const $push51=, 31 i32.gt_u $push52=, $2, $pop51 br_if 0, $pop52 # 0: down to label12 @@ -186,7 +186,7 @@ num_lshift: # @num_lshift i32.store 0($7), $pop57 .LBB0_22: # %if.end15.i end_block # label10: - block + block i32.const $push58=, 32 i32.lt_u $push59=, $3, $pop58 br_if 0, $pop59 # 0: down to label13 @@ -198,8 +198,8 @@ num_lshift: # @num_lshift i32.add $3=, $3, $pop61 .LBB0_24: # %if.end22.i end_block # label13: - block - block + block + block i32.eqz $push128=, $3 br_if 0, $pop128 # 0: down to label15 # BB#25: # %if.end38.sink.split.i @@ -226,8 +226,8 @@ num_lshift: # @num_lshift i32.load $3=, 8($12) .LBB0_27: # %if.end38.i end_block # label14: - block - block + block + block i32.const $push68=, 33 i32.lt_u $push69=, $2, $pop68 br_if 0, $pop69 # 0: down to label17 @@ -319,7 +319,7 @@ main: # @main i32.const $push25=, 0 i32.load $push11=, n($pop25) call num_lshift@FUNCTION, $pop24, $0, $pop12, $pop11 - block + block i32.load $push14=, 20($0) i32.const $push13=, 196608 i32.ne $push15=, $pop14, $pop13 @@ -373,6 +373,6 @@ num: .size num, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20040704-1.c.s b/test/torture-s/20040704-1.c.s index 5bb2b381f..94719832f 100644 --- a/test/torture-s/20040704-1.c.s +++ b/test/torture-s/20040704-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040705-1.c.s b/test/torture-s/20040705-1.c.s index 07ed6a495..3401026d0 100644 --- a/test/torture-s/20040705-1.c.s +++ b/test/torture-s/20040705-1.c.s @@ -3588,4 +3588,4 @@ d: .size d, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040705-2.c.s b/test/torture-s/20040705-2.c.s index 0b61e705f..f67bea955 100644 --- a/test/torture-s/20040705-2.c.s +++ b/test/torture-s/20040705-2.c.s @@ -3588,4 +3588,4 @@ d: .size d, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040706-1.c.s b/test/torture-s/20040706-1.c.s index 9c1b88d25..2719a751c 100644 --- a/test/torture-s/20040706-1.c.s +++ b/test/torture-s/20040706-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20040707-1.c.s b/test/torture-s/20040707-1.c.s index 860d0ff08..904372313 100644 --- a/test/torture-s/20040707-1.c.s +++ b/test/torture-s/20040707-1.c.s @@ -27,5 +27,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20040709-1.c.s b/test/torture-s/20040709-1.c.s index 45916a6a9..3793f2ca7 100644 --- a/test/torture-s/20040709-1.c.s +++ b/test/torture-s/20040709-1.c.s @@ -195,7 +195,7 @@ testA: # @testA i32.or $push41=, $pop12, $pop42 tee_local $push40=, $4=, $pop41 i32.store sA($pop53), $pop40 - block + block i32.const $push39=, 16 i32.shr_u $push13=, $1, $pop39 i32.const $push38=, 2047 @@ -464,7 +464,7 @@ testB: # @testB i32.or $push58=, $pop21, $pop19 tee_local $push57=, $1=, $pop58 i32.store sB($pop65), $pop57 - block + block i32.const $push56=, 16 i32.shr_u $push22=, $0, $pop56 i32.const $push55=, 2047 @@ -752,7 +752,7 @@ testC: # @testC i32.or $push58=, $pop21, $pop59 tee_local $push57=, $3=, $pop58 i32.store sC+4($pop66), $pop57 - block + block i32.const $push56=, 16 i32.shr_u $push22=, $0, $pop56 i32.const $push55=, 2047 @@ -1941,7 +1941,7 @@ testG: # @testG i32.or $push64=, $pop35, $pop65 tee_local $push63=, $4=, $pop64 i32.store sG($pop72), $pop63 - block + block i32.const $push62=, 16 i32.shr_u $push61=, $1, $pop62 tee_local $push60=, $5=, $pop61 @@ -2285,7 +2285,7 @@ testH: # @testH i32.or $push64=, $pop35, $pop65 tee_local $push63=, $4=, $pop64 i32.store sH($pop72), $pop63 - block + block i32.const $push62=, 16 i32.shr_u $push61=, $1, $pop62 tee_local $push60=, $5=, $pop61 @@ -2812,7 +2812,7 @@ testJ: # @testJ i32.add $push39=, $pop14, $pop40 tee_local $push38=, $0=, $pop39 i32.store myrnd.s($pop42), $pop38 - block + block i32.const $push37=, 16 i32.shr_u $push36=, $0, $pop37 tee_local $push35=, $2=, $pop36 @@ -3233,7 +3233,7 @@ testL: # @testL i32.or $push40=, $pop20, $pop19 tee_local $push39=, $1=, $pop40 i32.store sL($pop46), $pop39 - block + block i32.const $push38=, 16 i32.shr_u $push37=, $0, $pop38 tee_local $push36=, $3=, $pop37 @@ -3479,7 +3479,7 @@ testM: # @testM i32.or $push39=, $pop20, $pop40 tee_local $push38=, $3=, $pop39 i32.store sM+4($pop46), $pop38 - block + block i32.const $push37=, 16 i32.shr_u $push36=, $0, $pop37 tee_local $push35=, $4=, $pop36 @@ -3738,7 +3738,7 @@ testN: # @testN i64.or $push77=, $pop26, $pop23 tee_local $push76=, $5=, $pop77 i64.store sN($pop84), $pop76 - block + block i64.const $push75=, 6 i64.shr_u $push27=, $5, $pop75 i32.wrap/i64 $push74=, $pop27 @@ -4128,7 +4128,7 @@ testO: # @testO i64.or $push90=, $pop43, $pop41 tee_local $push89=, $3=, $pop90 i64.store sO+8($pop95), $pop89 - block + block i32.wrap/i64 $push88=, $3 tee_local $push87=, $5=, $pop88 i32.const $push86=, 2047 @@ -4513,7 +4513,7 @@ testP: # @testP i64.or $push90=, $pop43, $pop41 tee_local $push89=, $3=, $pop90 i64.store sP($pop95), $pop89 - block + block i32.wrap/i64 $push88=, $3 tee_local $push87=, $5=, $pop88 i32.const $push86=, 2047 @@ -5470,7 +5470,7 @@ testS: # @testS i32.and $push47=, $2, $pop46 i32.or $push48=, $pop45, $pop47 i32.store16 sS($pop52), $pop48 - block + block i32.const $push49=, 1 i32.eqz $push154=, $pop49 br_if 0, $pop154 # 0: down to label11 @@ -5648,7 +5648,7 @@ testT: # @testT i32.add $push37=, $pop14, $pop38 tee_local $push36=, $0=, $pop37 i32.store myrnd.s($pop40), $pop36 - block + block i32.const $push35=, 16 i32.shr_u $push34=, $0, $pop35 tee_local $push33=, $2=, $pop34 @@ -5995,7 +5995,7 @@ testU: # @testU i32.or $push102=, $pop43, $pop103 tee_local $push101=, $3=, $pop102 i32.store16 sU($pop110), $pop101 - block + block i32.const $push44=, 65472 i32.and $push45=, $3, $pop44 i32.const $push100=, 6 @@ -6288,7 +6288,7 @@ testV: # @testV i32.add $push70=, $pop15, $pop71 tee_local $push69=, $0=, $pop70 i32.store myrnd.s($pop73), $pop69 - block + block i32.const $push68=, 16 i32.shr_u $push67=, $0, $pop68 tee_local $push66=, $3=, $pop67 @@ -6536,7 +6536,7 @@ testW: # @testW i32.const $1=, -32 .LBB138_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label15: + loop # label15: i32.const $push39=, sW+32 i32.add $push1=, $1, $pop39 i32.const $push38=, 1103515245 @@ -6756,7 +6756,7 @@ testX: # @testX i32.const $1=, -32 .LBB144_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label16: + loop # label16: i32.const $push39=, sX+32 i32.add $push1=, $1, $pop39 i32.const $push38=, 1103515245 @@ -6976,7 +6976,7 @@ testY: # @testY i32.const $1=, -32 .LBB150_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label17: + loop # label17: i32.const $push39=, sY+32 i32.add $push1=, $1, $pop39 i32.const $push38=, 1103515245 @@ -7196,7 +7196,7 @@ testZ: # @testZ i32.const $3=, -32 .LBB156_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label18: + loop # label18: i32.const $push49=, sZ+32 i32.add $push2=, $3, $pop49 i32.const $push48=, 1103515245 @@ -7247,7 +7247,7 @@ testZ: # @testZ i32.or $push57=, $pop11, $pop58 tee_local $push56=, $1=, $pop57 i32.store sZ+16($pop66), $pop56 - block + block i32.const $push55=, 16 i32.shr_u $push12=, $3, $pop55 i32.const $push54=, 2047 @@ -7610,6 +7610,6 @@ sZ: .size sZ, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20040709-2.c.s b/test/torture-s/20040709-2.c.s index e5e389b85..adfea89cf 100644 --- a/test/torture-s/20040709-2.c.s +++ b/test/torture-s/20040709-2.c.s @@ -2255,7 +2255,7 @@ testJ: # @testJ i32.add $push39=, $pop14, $pop40 tee_local $push38=, $0=, $pop39 i32.store myrnd.s($pop42), $pop38 - block + block i32.const $push37=, 16 i32.shr_u $push36=, $0, $pop37 tee_local $push35=, $2=, $pop36 @@ -2676,7 +2676,7 @@ testL: # @testL i32.or $push40=, $pop20, $pop19 tee_local $push39=, $1=, $pop40 i32.store sL($pop46), $pop39 - block + block i32.const $push38=, 16 i32.shr_u $push37=, $0, $pop38 tee_local $push36=, $3=, $pop37 @@ -2922,7 +2922,7 @@ testM: # @testM i32.or $push39=, $pop20, $pop40 tee_local $push38=, $3=, $pop39 i32.store sM+4($pop46), $pop38 - block + block i32.const $push37=, 16 i32.shr_u $push36=, $0, $pop37 tee_local $push35=, $4=, $pop36 @@ -3181,7 +3181,7 @@ testN: # @testN i64.or $push77=, $pop26, $pop23 tee_local $push76=, $5=, $pop77 i64.store sN($pop84), $pop76 - block + block i64.const $push75=, 6 i64.shr_u $push27=, $5, $pop75 i32.wrap/i64 $push74=, $pop27 @@ -3571,7 +3571,7 @@ testO: # @testO i64.or $push90=, $pop43, $pop41 tee_local $push89=, $3=, $pop90 i64.store sO+8($pop95), $pop89 - block + block i32.wrap/i64 $push88=, $3 tee_local $push87=, $5=, $pop88 i32.const $push86=, 2047 @@ -3956,7 +3956,7 @@ testP: # @testP i64.or $push90=, $pop43, $pop41 tee_local $push89=, $3=, $pop90 i64.store sP($pop95), $pop89 - block + block i32.wrap/i64 $push88=, $3 tee_local $push87=, $5=, $pop88 i32.const $push86=, 2047 @@ -4518,7 +4518,7 @@ testR: # @testR i32.and $push35=, $2, $pop34 i32.or $push36=, $pop33, $pop35 i32.store16 sR($pop40), $pop36 - block + block i32.const $push37=, 1 i32.eqz $push106=, $pop37 br_if 0, $pop106 # 0: down to label6 @@ -4758,7 +4758,7 @@ testS: # @testS i32.and $push35=, $2, $pop34 i32.or $push36=, $pop33, $pop35 i32.store16 sS($pop40), $pop36 - block + block i32.const $push37=, 1 i32.eqz $push106=, $pop37 br_if 0, $pop106 # 0: down to label7 @@ -4936,7 +4936,7 @@ testT: # @testT i32.add $push37=, $pop14, $pop38 tee_local $push36=, $0=, $pop37 i32.store myrnd.s($pop40), $pop36 - block + block i32.const $push35=, 16 i32.shr_u $push34=, $0, $pop35 tee_local $push33=, $2=, $pop34 @@ -5229,7 +5229,7 @@ testU: # @testU i32.or $push90=, $pop31, $pop91 tee_local $push89=, $3=, $pop90 i32.store16 sU($pop98), $pop89 - block + block i32.const $push32=, 65472 i32.and $push33=, $3, $pop32 i32.const $push88=, 6 @@ -5522,7 +5522,7 @@ testV: # @testV i32.add $push70=, $pop15, $pop71 tee_local $push69=, $0=, $pop70 i32.store myrnd.s($pop73), $pop69 - block + block i32.const $push68=, 16 i32.shr_u $push67=, $0, $pop68 tee_local $push66=, $3=, $pop67 @@ -6521,7 +6521,7 @@ testZ: # @testZ i32.or $push55=, $pop18, $pop56 tee_local $push54=, $3=, $pop55 i32.store sZ+16($pop64), $pop54 - block + block i32.const $push53=, 16 i32.shr_u $push19=, $0, $pop53 i32.const $push52=, 2047 @@ -6882,6 +6882,6 @@ sZ: .size sZ, 20 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20040805-1.c.s b/test/torture-s/20040805-1.c.s index cb18f98f6..0049c0ca4 100644 --- a/test/torture-s/20040805-1.c.s +++ b/test/torture-s/20040805-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.call $push1=, foo@FUNCTION i32.const $push0=, 102 i32.ne $push2=, $pop1, $pop0 @@ -74,6 +74,6 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20040811-1.c.s b/test/torture-s/20040811-1.c.s index 88ac9665f..baf7f36d3 100644 --- a/test/torture-s/20040811-1.c.s +++ b/test/torture-s/20040811-1.c.s @@ -15,7 +15,7 @@ main: # @main i32.const $2=, 0 .LBB0_1: # %lab # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push24=, 1000 i32.rem_s $push0=, $2, $pop24 i32.const $push23=, 2 @@ -61,4 +61,4 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20040820-1.c.s b/test/torture-s/20040820-1.c.s index cd6250670..dec5e00fb 100644 --- a/test/torture-s/20040820-1.c.s +++ b/test/torture-s/20040820-1.c.s @@ -7,7 +7,7 @@ check: # @check .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -28,7 +28,7 @@ check: # @check test: # @test .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.ne $push2=, $1, $pop0 i32.const $push3=, 1 @@ -67,6 +67,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20040823-1.c.s b/test/torture-s/20040823-1.c.s index 7f9c4bd95..4697edbe3 100644 --- a/test/torture-s/20040823-1.c.s +++ b/test/torture-s/20040823-1.c.s @@ -6,7 +6,7 @@ .type bla,@function bla: # @bla # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load $push0=, pwarn($pop2) i32.load $push1=, 0($pop0) @@ -60,6 +60,6 @@ pwarn: .size pwarn, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20040831-1.c.s b/test/torture-s/20040831-1.c.s index 2aee77a31..0e485eee5 100644 --- a/test/torture-s/20040831-1.c.s +++ b/test/torture-s/20040831-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20040917-1.c.s b/test/torture-s/20040917-1.c.s index 320054bea..b0e5e0750 100644 --- a/test/torture-s/20040917-1.c.s +++ b/test/torture-s/20040917-1.c.s @@ -25,7 +25,7 @@ main: # @main i32.const $push0=, 10 i32.store test_var($pop5), $pop0 call not_inlinable@FUNCTION - block + block i32.const $push4=, 0 i32.load $push1=, test_var($pop4) i32.const $push3=, 10 @@ -50,5 +50,5 @@ test_var: .size test_var, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20041011-1.c.s b/test/torture-s/20041011-1.c.s index 12fb7fc49..3b43be343 100644 --- a/test/torture-s/20041011-1.c.s +++ b/test/torture-s/20041011-1.c.s @@ -9,7 +9,7 @@ t1: # @t1 .result i64 .local i64, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push69=, $0 br_if 0, $pop69 # 0: down to label0 # BB#1: # %while.body.preheader @@ -20,7 +20,7 @@ t1: # @t1 i64.shl $2=, $pop1, $pop2 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push68=, 0 i32.load $3=, gvol+4($pop68) i32.const $push67=, 0 @@ -167,7 +167,7 @@ t2: # @t2 .result i64 .local i64, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push69=, $0 br_if 0, $pop69 # 0: down to label2 # BB#1: # %while.body.preheader @@ -176,7 +176,7 @@ t2: # @t2 i64.extend_u/i32 $2=, $pop0 .LBB1_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push67=, 0 i32.load $3=, gvol+4($pop67) i32.const $push66=, 0 @@ -325,7 +325,7 @@ t3: # @t3 .result i64 .local i64, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push69=, $0 br_if 0, $pop69 # 0: down to label4 # BB#1: # %while.body.preheader @@ -336,7 +336,7 @@ t3: # @t3 i64.shl $2=, $pop1, $pop2 .LBB2_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.const $push68=, 0 i32.load $3=, gvol+4($pop68) i32.const $push67=, 0 @@ -483,7 +483,7 @@ t4: # @t4 .result i64 .local i64, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push69=, $0 br_if 0, $pop69 # 0: down to label6 # BB#1: # %while.body.preheader @@ -492,7 +492,7 @@ t4: # @t4 i64.extend_u/i32 $2=, $pop0 .LBB3_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label7: + loop # label7: i32.const $push67=, 0 i32.load $3=, gvol+4($pop67) i32.const $push66=, 0 @@ -641,7 +641,7 @@ t5: # @t5 .result i64 .local i64, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push67=, $0 br_if 0, $pop67 # 0: down to label8 # BB#1: # %while.body.preheader @@ -650,7 +650,7 @@ t5: # @t5 i64.extend_u/i32 $2=, $pop0 .LBB4_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label9: + loop # label9: i32.const $push66=, 0 i32.load $3=, gvol+4($pop66) i32.const $push65=, 0 @@ -797,7 +797,7 @@ t6: # @t6 .result i64 .local i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push67=, $0 br_if 0, $pop67 # 0: down to label10 # BB#1: # %while.body.preheader @@ -807,7 +807,7 @@ t6: # @t6 i64.add $1=, $pop1, $1 .LBB5_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label11: + loop # label11: i32.const $push66=, 0 i32.load $2=, gvol+4($pop66) i32.const $push65=, 0 @@ -953,7 +953,7 @@ t7: # @t7 .result i64 .local i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push69=, $0 br_if 0, $pop69 # 0: down to label12 # BB#1: # %while.body.preheader @@ -965,7 +965,7 @@ t7: # @t7 i64.add $1=, $pop3, $1 .LBB6_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label13: + loop # label13: i32.const $push68=, 0 i32.load $2=, gvol+4($pop68) i32.const $push67=, 0 @@ -1111,7 +1111,7 @@ t8: # @t8 .result i64 .local i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push69=, $0 br_if 0, $pop69 # 0: down to label14 # BB#1: # %while.body.preheader @@ -1123,7 +1123,7 @@ t8: # @t8 i64.add $1=, $pop3, $1 .LBB7_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label15: + loop # label15: i32.const $push68=, 0 i32.load $2=, gvol+4($pop68) i32.const $push67=, 0 @@ -1269,7 +1269,7 @@ t9: # @t9 .result i64 .local i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push69=, $0 br_if 0, $pop69 # 0: down to label16 # BB#1: # %while.body.preheader @@ -1281,7 +1281,7 @@ t9: # @t9 i64.add $1=, $pop3, $1 .LBB8_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label17: + loop # label17: i32.const $push68=, 0 i32.load $2=, gvol+4($pop68) i32.const $push67=, 0 @@ -1427,7 +1427,7 @@ t10: # @t10 .result i64 .local i64, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push70=, $0 br_if 0, $pop70 # 0: down to label18 # BB#1: # %while.body.lr.ph @@ -1441,7 +1441,7 @@ t10: # @t10 i64.mul $2=, $pop4, $pop3 .LBB9_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label19: + loop # label19: i32.const $push69=, 0 i32.load $3=, gvol+4($pop69) i32.const $push68=, 0 @@ -1586,7 +1586,7 @@ t11: # @t11 .result i64 .local i64, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push70=, $0 br_if 0, $pop70 # 0: down to label20 # BB#1: # %while.body.lr.ph @@ -1600,7 +1600,7 @@ t11: # @t11 i64.mul $2=, $pop4, $pop3 .LBB10_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label21: + loop # label21: i32.const $push69=, 0 i32.load $3=, gvol+4($pop69) i32.const $push68=, 0 @@ -1762,7 +1762,7 @@ main: # @main i32.const $push1=, 0 i64.const $push0=, 100 i64.store gull($pop1), $pop0 - block + block i32.const $push100=, 3 i64.const $push2=, -1 i64.call $push3=, t1@FUNCTION, $pop100, $pop2 @@ -1972,6 +1972,6 @@ gull: .size gull, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20041019-1.c.s b/test/torture-s/20041019-1.c.s index f1b248b24..a2ca455b9 100644 --- a/test/torture-s/20041019-1.c.s +++ b/test/torture-s/20041019-1.c.s @@ -90,4 +90,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20041112-1.c.s b/test/torture-s/20041112-1.c.s index c3160dcee..ada0b93a1 100644 --- a/test/torture-s/20041112-1.c.s +++ b/test/torture-s/20041112-1.c.s @@ -60,4 +60,4 @@ global: .size global, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20041113-1.c.s b/test/torture-s/20041113-1.c.s index 2c61f1aa0..cbde9c7fc 100644 --- a/test/torture-s/20041113-1.c.s +++ b/test/torture-s/20041113-1.c.s @@ -20,7 +20,7 @@ test: # @test i32.add $push25=, $1, $pop0 tee_local $push24=, $2=, $pop25 i32.store 12($4), $pop24 - block + block i32.load $push1=, 0($1) i32.const $push2=, 1 i32.ne $push3=, $pop1, $pop2 @@ -111,6 +111,6 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20041114-1.c.s b/test/torture-s/20041114-1.c.s index ed7698ea3..9fcd53810 100644 --- a/test/torture-s/20041114-1.c.s +++ b/test/torture-s/20041114-1.c.s @@ -38,4 +38,4 @@ v: .size v, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20041124-1.c.s b/test/torture-s/20041124-1.c.s index 3264de72e..3a6096c76 100644 --- a/test/torture-s/20041124-1.c.s +++ b/test/torture-s/20041124-1.c.s @@ -33,7 +33,7 @@ main: # @main i32.const $push14=, 8 i32.add $push15=, $0, $pop14 call foo@FUNCTION, $pop15 - block + block i32.load16_u $push3=, 8($0) i32.const $push16=, 0 i32.load16_u $push2=, gs($pop16) @@ -72,6 +72,6 @@ gs: .size gs, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20041126-1.c.s b/test/torture-s/20041126-1.c.s index d10acd7c6..56941d396 100644 --- a/test/torture-s/20041126-1.c.s +++ b/test/torture-s/20041126-1.c.s @@ -8,7 +8,7 @@ check: # @check .param i32 .local i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) br_if 0, $pop0 # 0: down to label0 # BB#1: # %for.inc @@ -27,8 +27,8 @@ check: # @check i32.const $1=, 5 .LBB0_6: # %for.cond1 # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.const $push10=, 9 i32.gt_s $push5=, $1, $pop10 br_if 1, $pop5 # 1: down to label1 @@ -88,8 +88,8 @@ main: # @main i32.const $1=, 5 .LBB1_1: # %for.cond1.i # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: i32.const $push24=, 9 i32.gt_s $push6=, $1, $pop24 br_if 1, $pop6 # 1: down to label3 @@ -137,5 +137,5 @@ main: # @main .size .Lmain.a, 40 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20041201-1.c.s b/test/torture-s/20041201-1.c.s index e9bf1e4c5..41ca781d9 100644 --- a/test/torture-s/20041201-1.c.s +++ b/test/torture-s/20041201-1.c.s @@ -10,7 +10,7 @@ checkScc2: # @checkScc2 .local i32 # BB#0: # %entry i32.const $1=, 1 - block + block i32.load8_u $push1=, 0($0) i32.const $push14=, 1 i32.ne $push2=, $pop1, $pop14 @@ -49,7 +49,7 @@ main: # @main .local i32 # BB#0: # %entry i32.const $0=, 1 - block + block i32.const $push15=, 0 i32.load8_u $push1=, s($pop15) i32.const $push14=, 1 @@ -93,4 +93,4 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20041210-1.c.s b/test/torture-s/20041210-1.c.s index d20ed356e..a18a84ebd 100644 --- a/test/torture-s/20041210-1.c.s +++ b/test/torture-s/20041210-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push9=, 0 i32.load $push1=, x($pop9) i32.const $push8=, 0 @@ -48,6 +48,6 @@ x: .size x, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20041212-1.c.s b/test/torture-s/20041212-1.c.s index 92b572d53..d9f1e59b7 100644 --- a/test/torture-s/20041212-1.c.s +++ b/test/torture-s/20041212-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20041213-2.c.s b/test/torture-s/20041213-2.c.s index b0468b2fb..657854684 100644 --- a/test/torture-s/20041213-2.c.s +++ b/test/torture-s/20041213-2.c.s @@ -8,8 +8,8 @@ foo: # @foo .param i32 .local i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.eqz $push9=, $0 br_if 0, $pop9 # 0: down to label1 # BB#1: # %for.cond1.preheader.preheader @@ -17,9 +17,9 @@ foo: # @foo i32.const $3=, 1 .LBB0_2: # %for.cond1.preheader # =>This Inner Loop Header: Depth=1 - loop # label2: - block - block + loop # label2: + block + block copy_local $push4=, $3 tee_local $push3=, $1=, $pop4 i32.ge_s $push0=, $2, $pop3 @@ -73,6 +73,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20041214-1.c.s b/test/torture-s/20041214-1.c.s index 58908e63b..cace42335 100644 --- a/test/torture-s/20041214-1.c.s +++ b/test/torture-s/20041214-1.c.s @@ -9,7 +9,7 @@ g: # @g .result i32 .local i32 # BB#0: # %entry - block + block i32.load8_u $push1=, 0($1) i32.eqz $push7=, $pop1 br_if 0, $pop7 # 0: down to label0 @@ -18,7 +18,7 @@ g: # @g i32.add $1=, $1, $pop4 .LBB0_2: # %do_form_string # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load $push2=, 0($2) i32.call $drop=, strcpy@FUNCTION, $0, $pop2 i32.const $push6=, 4 @@ -53,7 +53,7 @@ f: # @f tee_local $push10=, $4=, $pop11 i32.store __stack_pointer($pop6), $pop10 i32.store 12($4), $2 - block + block i32.load8_u $push1=, 0($1) i32.eqz $push15=, $pop1 br_if 0, $pop15 # 0: down to label2 @@ -63,7 +63,7 @@ f: # @f i32.load $2=, 12($4) .LBB1_2: # %do_form_string.i # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.load $push2=, 0($2) i32.call $drop=, strcpy@FUNCTION, $0, $pop2 i32.const $push14=, 4 @@ -108,7 +108,7 @@ main: # @main i32.add $push11=, $0, $pop10 i32.const $push1=, .L.str call f@FUNCTION, $pop11, $pop1, $0 - block + block i32.const $push12=, 22 i32.add $push13=, $0, $pop12 i32.const $push14=, .L.str.1 @@ -141,7 +141,7 @@ main: # @main .size .L.str.1, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcpy, i32, i32, i32 .functype strcmp, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/20041218-1.c.s b/test/torture-s/20041218-1.c.s index 280dbf95a..11557fefa 100644 --- a/test/torture-s/20041218-1.c.s +++ b/test/torture-s/20041218-1.c.s @@ -54,7 +54,7 @@ check: # @check .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push0=, 0($1) br_if 0, $pop0 # 0: down to label0 # BB#1: # %lor.lhs.false @@ -98,8 +98,8 @@ foo: # @foo i32.const $3=, 0 i32.const $push6=, 0 i32.store 0($2), $pop6 - block - block + block + block i32.eqz $push10=, $1 br_if 0, $pop10 # 0: down to label2 # BB#1: # %for.body @@ -173,6 +173,6 @@ baz.v: .size baz.v, 44 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20050104-1.c.s b/test/torture-s/20050104-1.c.s index 3798b9c34..5da4ac395 100644 --- a/test/torture-s/20050104-1.c.s +++ b/test/torture-s/20050104-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i64 # BB#0: # %entry - block + block i64.const $push0=, 10 i64.gt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -35,5 +35,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050106-1.c.s b/test/torture-s/20050106-1.c.s index 9b98ce58c..f755aa99e 100644 --- a/test/torture-s/20050106-1.c.s +++ b/test/torture-s/20050106-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load16_s $push0=, u($pop3) i32.const $push1=, -1 @@ -34,5 +34,5 @@ u: .size u, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050107-1.c.s b/test/torture-s/20050107-1.c.s index 032a8122a..b129db6ee 100644 --- a/test/torture-s/20050107-1.c.s +++ b/test/torture-s/20050107-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.load8_u $push0=, 0($0) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -41,5 +41,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050111-1.c.s b/test/torture-s/20050111-1.c.s index 700678619..507ff1a86 100644 --- a/test/torture-s/20050111-1.c.s +++ b/test/torture-s/20050111-1.c.s @@ -49,4 +49,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20050119-1.c.s b/test/torture-s/20050119-1.c.s index cfddfce5c..df3ec5547 100644 --- a/test/torture-s/20050119-1.c.s +++ b/test/torture-s/20050119-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.load8_u $push1=, 0($0) i32.load8_u $push0=, 1($0) i32.ne $push2=, $pop1, $pop0 @@ -61,6 +61,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20050119-2.c.s b/test/torture-s/20050119-2.c.s index fb7aaf1f0..4a8df70ca 100644 --- a/test/torture-s/20050119-2.c.s +++ b/test/torture-s/20050119-2.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32 .result i32 # BB#0: # %entry - block + block i32.load8_u $push1=, 0($0) i32.load8_u $push0=, 1($0) i32.ne $push2=, $pop1, $pop0 @@ -44,6 +44,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20050121-1.c.s b/test/torture-s/20050121-1.c.s index 2564a3614..f5b0c5015 100644 --- a/test/torture-s/20050121-1.c.s +++ b/test/torture-s/20050121-1.c.s @@ -428,4 +428,4 @@ main: # @main .size main, .Lfunc_end24-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20050124-1.c.s b/test/torture-s/20050124-1.c.s index 6c61eaa24..26183b292 100644 --- a/test/torture-s/20050124-1.c.s +++ b/test/torture-s/20050124-1.c.s @@ -11,8 +11,8 @@ foo: # @foo # BB#0: # %entry i32.const $push0=, 1 i32.add $2=, $0, $pop0 - block - block + block + block i32.eqz $push7=, $1 br_if 0, $pop7 # 0: down to label1 # BB#1: # %if.then @@ -49,4 +49,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20050125-1.c.s b/test/torture-s/20050125-1.c.s index ff1a89fca..918f117d6 100644 --- a/test/torture-s/20050125-1.c.s +++ b/test/torture-s/20050125-1.c.s @@ -23,8 +23,8 @@ bracket_empty: # @bracket_empty .param i32 .local i32 # BB#0: # %entry - block - block + block + block i32.load $push9=, 0($0) tee_local $push8=, $1=, $pop9 i32.load $push0=, 4($0) @@ -64,4 +64,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20050131-1.c.s b/test/torture-s/20050131-1.c.s index c74c90517..814e1a2c8 100644 --- a/test/torture-s/20050131-1.c.s +++ b/test/torture-s/20050131-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20050203-1.c.s b/test/torture-s/20050203-1.c.s index 757a8e10f..c932f0417 100644 --- a/test/torture-s/20050203-1.c.s +++ b/test/torture-s/20050203-1.c.s @@ -20,7 +20,7 @@ main: # @main call foo@FUNCTION, $pop8 i32.load8_s $0=, 15($0) call bar@FUNCTION - block + block i32.const $push0=, -1 i32.gt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -60,6 +60,6 @@ bar: # @bar .size bar, .Lfunc_end2-bar - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20050215-1.c.s b/test/torture-s/20050215-1.c.s index 5700d8fad..5c0c5f6ed 100644 --- a/test/torture-s/20050215-1.c.s +++ b/test/torture-s/20050215-1.c.s @@ -7,9 +7,9 @@ main: # @main .result i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push13=, v i32.const $push0=, 4 i32.and $push1=, $pop13, $pop0 @@ -56,5 +56,5 @@ v: .size v, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050218-1.c.s b/test/torture-s/20050218-1.c.s index c2a2eac8c..04215fdc7 100644 --- a/test/torture-s/20050218-1.c.s +++ b/test/torture-s/20050218-1.c.s @@ -10,7 +10,7 @@ foo: # @foo .local i32, i32, i32, i32, i32 # BB#0: # %entry i32.const $7=, 0 - block + block i32.eqz $push12=, $2 br_if 0, $pop12 # 0: down to label0 # BB#1: # %for.body.lr.ph @@ -19,7 +19,7 @@ foo: # @foo i32.const $6=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $7=, 2 i32.add $push0=, $0, $5 i32.load $push7=, 0($4) @@ -31,7 +31,7 @@ foo: # @foo # BB#3: # %if.end # in Loop: Header=BB0_2 Depth=1 i32.add $5=, $3, $5 - block + block i32.eqz $push13=, $1 br_if 0, $pop13 # 0: down to label2 # BB#4: # %if.then6 @@ -66,7 +66,7 @@ main: # @main .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push13=, .L.str.4 i32.const $push12=, 0 i32.load $push11=, a($pop12) @@ -158,7 +158,7 @@ a: .size .L.str.4, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strncmp, i32, i32, i32, i32 .functype strlen, i32, i32 .functype abort, void diff --git a/test/torture-s/20050224-1.c.s b/test/torture-s/20050224-1.c.s index 3eccf78ba..71d45f6e8 100644 --- a/test/torture-s/20050224-1.c.s +++ b/test/torture-s/20050224-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 245 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -38,7 +38,7 @@ main: # @main .local i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry i32.const $8=, 0 - block + block i32.const $push18=, 0 i32.load $push17=, a($pop18) tee_local $push16=, $5=, $pop17 @@ -60,9 +60,9 @@ main: # @main i32.const $6=, 0 .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: - block - block + loop # label2: + block + block i32.ge_u $push1=, $5, $1 br_if 0, $pop1 # 0: down to label4 # BB#3: # %if.then @@ -73,7 +73,7 @@ main: # @main .LBB1_4: # %if.else # in Loop: Header=BB1_2 Depth=1 end_block # label4: - block + block i32.lt_u $push2=, $5, $2 br_if 0, $pop2 # 0: down to label5 # BB#5: # %if.else @@ -177,5 +177,5 @@ f: .size f, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050316-1.c.s b/test/torture-s/20050316-1.c.s index 1f738b7ef..ac4ff8a78 100644 --- a/test/torture-s/20050316-1.c.s +++ b/test/torture-s/20050316-1.c.s @@ -94,4 +94,4 @@ main: # @main .size main, .Lfunc_end5-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20050316-2.c.s b/test/torture-s/20050316-2.c.s index 91d23b823..10ae80000 100644 --- a/test/torture-s/20050316-2.c.s +++ b/test/torture-s/20050316-2.c.s @@ -72,4 +72,4 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20050316-3.c.s b/test/torture-s/20050316-3.c.s index 25d3910a2..e4b5369a3 100644 --- a/test/torture-s/20050316-3.c.s +++ b/test/torture-s/20050316-3.c.s @@ -48,4 +48,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20050410-1.c.s b/test/torture-s/20050410-1.c.s index b01f44f62..07174f999 100644 --- a/test/torture-s/20050410-1.c.s +++ b/test/torture-s/20050410-1.c.s @@ -29,7 +29,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.call $push1=, foo@FUNCTION i32.const $push0=, 95 i32.ne $push2=, $pop1, $pop0 @@ -56,6 +56,6 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20050502-1.c.s b/test/torture-s/20050502-1.c.s index 1bcb98b78..d163a88cf 100644 --- a/test/torture-s/20050502-1.c.s +++ b/test/torture-s/20050502-1.c.s @@ -46,7 +46,7 @@ foo: # @foo i32.call $push1=, bar@FUNCTION, $0 i32.store8 0($1), $pop1 i32.const $7=, 1 - block + block i32.call $push21=, bar@FUNCTION, $0 tee_local $push20=, $6=, $pop21 i32.const $push2=, 255 @@ -66,8 +66,8 @@ foo: # @foo i32.const $7=, 1 .LBB2_3: # %if.end14 # =>This Inner Loop Header: Depth=1 - loop # label1: - block + loop # label1: + block br_if 0, $4 # 0: down to label2 # BB#4: # %land.lhs.true18 # in Loop: Header=BB2_3 Depth=1 @@ -136,7 +136,7 @@ main: # @main i32.const $push2=, 1 i32.const $push1=, 0 call foo@FUNCTION, $pop46, $pop48, $pop2, $pop1 - block + block i32.load $push4=, 12($0) i32.const $push3=, .L.str.1 i32.call $push5=, strcmp@FUNCTION, $pop4, $pop3 @@ -319,6 +319,6 @@ main: # @main .size .L.str.14, 7 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/20050502-2.c.s b/test/torture-s/20050502-2.c.s index 9158a86f4..fc5fa897e 100644 --- a/test/torture-s/20050502-2.c.s +++ b/test/torture-s/20050502-2.c.s @@ -61,7 +61,7 @@ main: # @main tee_local $push27=, $0=, $pop28 i32.const $push26=, 0 i32.store8 0($pop27), $pop26 - block + block i32.const $push21=, 4 i32.add $push22=, $1, $pop21 i32.const $push8=, .L.str @@ -113,6 +113,6 @@ main: # @main .size .L.str.1, 11 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/20050604-1.c.s b/test/torture-s/20050604-1.c.s index 35ffedf02..503f9b4fa 100644 --- a/test/torture-s/20050604-1.c.s +++ b/test/torture-s/20050604-1.c.s @@ -118,7 +118,7 @@ main: # @main f32.add $push32=, $pop13, $pop33 tee_local $push31=, $5=, $pop32 f32.store v($pop34), $pop31 - block + block i32.const $push30=, 65535 i32.and $push14=, $2, $pop30 i32.const $push29=, 24 @@ -181,5 +181,5 @@ v: .size v, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050607-1.c.s b/test/torture-s/20050607-1.c.s index 87536e118..1a58b9c75 100644 --- a/test/torture-s/20050607-1.c.s +++ b/test/torture-s/20050607-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20050613-1.c.s b/test/torture-s/20050613-1.c.s index 1c6a91dcb..37966ebe8 100644 --- a/test/torture-s/20050613-1.c.s +++ b/test/torture-s/20050613-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) br_if 0, $pop0 # 0: down to label0 # BB#1: # %lor.lhs.false @@ -45,5 +45,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050713-1.c.s b/test/torture-s/20050713-1.c.s index 833e0e137..1907efea2 100644 --- a/test/torture-s/20050713-1.c.s +++ b/test/torture-s/20050713-1.c.s @@ -8,7 +8,7 @@ foo2: # @foo2 .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 3 i32.ne $push2=, $pop0, $pop1 @@ -57,7 +57,7 @@ foo3: # @foo3 .param i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push2=, 0($0) i32.const $push3=, 3 i32.ne $push4=, $pop2, $pop3 @@ -121,7 +121,7 @@ bar2: # @bar2 .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push2=, 0($1) i32.const $push3=, 3 i32.ne $push4=, $pop2, $pop3 @@ -170,7 +170,7 @@ bar3: # @bar3 .param i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push5=, 0($1) i32.const $push6=, 3 i32.ne $push7=, $pop5, $pop6 @@ -234,7 +234,7 @@ baz3: # @baz3 .param i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load $push5=, 0($1) i32.const $push6=, 3 i32.ne $push7=, $pop5, $pop6 @@ -304,5 +304,5 @@ main: # @main .size main, .Lfunc_end5-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050826-1.c.s b/test/torture-s/20050826-1.c.s index fbd5d7183..75ccfb11c 100644 --- a/test/torture-s/20050826-1.c.s +++ b/test/torture-s/20050826-1.c.s @@ -8,7 +8,7 @@ bar: # @bar .param i32 .local i32 # BB#0: # %entry - block + block i64.load $push0=, 0($0):p2align=0 i64.const $push1=, 368664092428289 i64.ne $push2=, $pop0, $pop1 @@ -19,8 +19,8 @@ bar: # @bar i32.const $0=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.add $push4=, $1, $0 i32.load8_u $push5=, 0($pop4) br_if 1, $pop5 # 1: down to label1 @@ -73,7 +73,7 @@ foo: # @foo i32.const $push14=, 0 i32.load $push5=, .L.str.1($pop14):p2align=0 i32.store a+1($pop15):p2align=0, $pop5 - block + block i32.const $push13=, 0 i64.load $push6=, a($pop13):p2align=0 i64.const $push7=, 368664092428289 @@ -83,8 +83,8 @@ foo: # @foo i32.const $1=, 8 .LBB1_2: # %for.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label5: + block + loop # label5: i32.const $push23=, -7 i32.add $push9=, $1, $pop23 i32.const $push22=, 2040 @@ -142,7 +142,7 @@ main: # @main i32.const $push14=, 0 i32.load $push5=, .L.str.1($pop14):p2align=0 i32.store a+1($pop15):p2align=0, $pop5 - block + block i32.const $push13=, 0 i64.load $push6=, a($pop13):p2align=0 i64.const $push7=, 368664092428289 @@ -152,8 +152,8 @@ main: # @main i32.const $1=, 8 .LBB2_2: # %for.cond.i.i # =>This Inner Loop Header: Depth=1 - block - loop # label8: + block + loop # label8: i32.const $push23=, -7 i32.add $push9=, $1, $pop23 i32.const $push22=, 2040 @@ -206,6 +206,6 @@ a: .size .L.str.1, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/20050826-2.c.s b/test/torture-s/20050826-2.c.s index a7813674d..4be91c510 100644 --- a/test/torture-s/20050826-2.c.s +++ b/test/torture-s/20050826-2.c.s @@ -12,9 +12,9 @@ inet_check_attr: # @inet_check_attr i32.const $3=, 1 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: - block + block + loop # label1: + block i32.load $push8=, 0($1) tee_local $push7=, $2=, $pop8 i32.eqz $push19=, $pop7 @@ -120,9 +120,9 @@ main: # @main i32.const $push118=, 56 i32.add $push119=, $4, $pop118 i32.store 52($4), $pop119 - block - block - block + block + block + block i32.call $push2=, inet_check_attr@FUNCTION, $1, $4 br_if 0, $pop2 # 0: down to label5 # BB#1: # %for.body9.preheader @@ -283,9 +283,9 @@ main: # @main i32.load $3=, 4($4) .LBB1_17: # %for.body43 # =>This Inner Loop Header: Depth=1 - block - loop # label7: - block + block + loop # label7: + block i32.const $push157=, 1 i32.ne $push77=, $1, $pop157 br_if 0, $pop77 # 0: down to label8 @@ -302,8 +302,8 @@ main: # @main i32.shl $push79=, $1, $pop159 i32.add $push80=, $4, $pop79 i32.load $2=, 0($pop80) - block - block + block + block i32.const $push158=, 5 i32.gt_s $push78=, $1, $pop158 br_if 0, $pop78 # 0: down to label10 @@ -357,5 +357,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20050929-1.c.s b/test/torture-s/20050929-1.c.s index 237a9d870..310a0d641 100644 --- a/test/torture-s/20050929-1.c.s +++ b/test/torture-s/20050929-1.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push24=, e($pop0) tee_local $push23=, $0=, $pop24 @@ -102,5 +102,5 @@ e: .size e, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20051012-1.c.s b/test/torture-s/20051012-1.c.s index c8c2da197..44c9c9f24 100644 --- a/test/torture-s/20051012-1.c.s +++ b/test/torture-s/20051012-1.c.s @@ -47,4 +47,4 @@ t: .size t, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20051021-1.c.s b/test/torture-s/20051021-1.c.s index afef627a4..61b8ed314 100644 --- a/test/torture-s/20051021-1.c.s +++ b/test/torture-s/20051021-1.c.s @@ -53,7 +53,7 @@ main: # @main i32.const $push0=, 2 i32.add $push1=, $pop2, $pop0 i32.store count($pop5), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end7 i32.const $push6=, 0 @@ -76,5 +76,5 @@ count: .size count, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20051104-1.c.s b/test/torture-s/20051104-1.c.s index c012c785f..a69ce7350 100644 --- a/test/torture-s/20051104-1.c.s +++ b/test/torture-s/20051104-1.c.s @@ -35,4 +35,4 @@ s: .size .L.str, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20051110-1.c.s b/test/torture-s/20051110-1.c.s index aa0b859c8..ef972ba28 100644 --- a/test/torture-s/20051110-1.c.s +++ b/test/torture-s/20051110-1.c.s @@ -8,7 +8,7 @@ add_unwind_adjustsp: # @add_unwind_adjustsp .param i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push0=, -516 i32.add $push1=, $0, $pop0 i32.const $push2=, 2 @@ -20,7 +20,7 @@ add_unwind_adjustsp: # @add_unwind_adjustsp i32.const $2=, bytes .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push13=, 128 i32.or $push4=, $0, $pop13 i32.const $push12=, 127 @@ -67,4 +67,4 @@ bytes: .size bytes, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20051110-2.c.s b/test/torture-s/20051110-2.c.s index bd07f189a..b663bc20f 100644 --- a/test/torture-s/20051110-2.c.s +++ b/test/torture-s/20051110-2.c.s @@ -17,8 +17,8 @@ add_unwind_adjustsp: # @add_unwind_adjustsp i32.load $1=, flag($pop9) .LBB0_1: # %a # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: copy_local $push17=, $0 tee_local $push16=, $2=, $pop17 i32.const $push15=, 7 @@ -66,8 +66,8 @@ main: # @main i32.const $3=, 904 .LBB1_1: # %a.i # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: copy_local $push23=, $3 tee_local $push22=, $1=, $pop23 i32.const $push21=, 7 @@ -96,7 +96,7 @@ main: # @main i32.const $push3=, 127 i32.and $push4=, $1, $pop3 i32.store8 0($pop6), $pop4 - block + block i32.const $push24=, 0 i32.load8_u $push7=, bytes($pop24) i32.const $push8=, 136 @@ -139,5 +139,5 @@ flag: .size flag, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20051113-1.c.s b/test/torture-s/20051113-1.c.s index 9cea1fad7..8267357a8 100644 --- a/test/torture-s/20051113-1.c.s +++ b/test/torture-s/20051113-1.c.s @@ -10,7 +10,7 @@ Sum: # @Sum .local i32, i32, i64 # BB#0: # %entry i64.const $3=, 0 - block + block i32.load $push7=, 0($0):p2align=0 tee_local $push6=, $1=, $pop7 i32.const $push5=, 1 @@ -23,7 +23,7 @@ Sum: # @Sum i32.const $2=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i64.load $push3=, 0($0):p2align=0 i64.add $3=, $pop3, $3 i32.const $push11=, 30 @@ -53,7 +53,7 @@ Sum2: # @Sum2 .local i32, i32, i64 # BB#0: # %entry i64.const $3=, 0 - block + block i32.load $push7=, 0($0):p2align=0 tee_local $push6=, $1=, $pop7 i32.const $push5=, 1 @@ -66,7 +66,7 @@ Sum2: # @Sum2 i32.const $2=, 0 .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i64.load $push3=, 0($0):p2align=0 i64.add $3=, $pop3, $3 i32.const $push11=, 30 @@ -116,7 +116,7 @@ main: # @main i64.store 48($0):p2align=0, $pop16 i64.const $push15=, 4311810305 i64.store 78($0):p2align=0, $pop15 - block + block i64.call $push9=, Sum@FUNCTION, $0 i64.const $push14=, 4311811859 i64.ne $push10=, $pop9, $pop14 @@ -138,6 +138,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype abort, void diff --git a/test/torture-s/20051215-1.c.s b/test/torture-s/20051215-1.c.s index 5fd1e8a70..8b695eab9 100644 --- a/test/torture-s/20051215-1.c.s +++ b/test/torture-s/20051215-1.c.s @@ -10,7 +10,7 @@ foo: # @foo .local i32, i32, i32 # BB#0: # %entry i32.const $5=, 0 - block + block i32.const $push6=, 1 i32.lt_s $push0=, $1, $pop6 br_if 0, $pop0 # 0: down to label0 @@ -20,8 +20,8 @@ foo: # @foo i32.const $5=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: - block + loop # label1: + block i32.eqz $push12=, $2 br_if 0, $pop12 # 0: down to label2 # BB#3: # %if.then @@ -58,7 +58,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push1=, 3 i32.const $push0=, 2 i32.const $push3=, 0 @@ -76,5 +76,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20060102-1.c.s b/test/torture-s/20060102-1.c.s index deb2df06a..a77456b00 100644 --- a/test/torture-s/20060102-1.c.s +++ b/test/torture-s/20060102-1.c.s @@ -24,7 +24,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push14=, 0 i32.load $push0=, one($pop14) i32.const $push1=, 31 @@ -62,5 +62,5 @@ one: .size one, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20060110-1.c.s b/test/torture-s/20060110-1.c.s index 970a1b5be..44ce5642c 100644 --- a/test/torture-s/20060110-1.c.s +++ b/test/torture-s/20060110-1.c.s @@ -24,7 +24,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push4=, 0 i64.load32_s $push1=, a($pop4) i32.const $push3=, 0 @@ -61,5 +61,5 @@ b: .size b, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20060110-2.c.s b/test/torture-s/20060110-2.c.s index 6f5b590fc..7081d2167 100644 --- a/test/torture-s/20060110-2.c.s +++ b/test/torture-s/20060110-2.c.s @@ -25,7 +25,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push11=, 0 i64.load $push1=, b($pop11) i32.const $push10=, 0 @@ -78,5 +78,5 @@ c: .size c, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20060127-1.c.s b/test/torture-s/20060127-1.c.s index c3f9b83c2..5ce2f01de 100644 --- a/test/torture-s/20060127-1.c.s +++ b/test/torture-s/20060127-1.c.s @@ -7,7 +7,7 @@ f: # @f .param i64 # BB#0: # %entry - block + block i32.wrap/i64 $push0=, $0 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -27,7 +27,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load $push0=, a($pop1) br_if 0, $pop0 # 0: down to label1 @@ -52,5 +52,5 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20060412-1.c.s b/test/torture-s/20060412-1.c.s index 072f67f0c..bf545c966 100644 --- a/test/torture-s/20060412-1.c.s +++ b/test/torture-s/20060412-1.c.s @@ -30,4 +30,4 @@ t: .size t, 332 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20060420-1.c.s b/test/torture-s/20060420-1.c.s index 4b6048cd0..c0bb0ba7b 100644 --- a/test/torture-s/20060420-1.c.s +++ b/test/torture-s/20060420-1.c.s @@ -9,7 +9,7 @@ foo: # @foo .local i32, i32, i32, i32, i32, i32, i32, i32, i32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32, f32 # BB#0: # %entry i32.const $10=, 0 - block + block i32.const $push85=, 1 i32.lt_s $push3=, $3, $pop85 br_if 0, $pop3 # 0: down to label0 @@ -22,7 +22,7 @@ foo: # @foo .LBB0_2: # %land.rhs # =>This Loop Header: Depth=1 # Child Loop BB0_5 Depth 2 - loop # label1: + loop # label1: i32.add $push4=, $10, $0 i32.const $push88=, 15 i32.and $push5=, $pop4, $pop88 @@ -36,7 +36,7 @@ foo: # @foo tee_local $push90=, $11=, $pop91 i32.add $push8=, $pop7, $pop90 f32.load $25=, 0($pop8) - block + block i32.const $push89=, 2 i32.lt_s $push6=, $2, $pop89 br_if 0, $pop6 # 0: down to label2 @@ -47,7 +47,7 @@ foo: # @foo .LBB0_5: # %for.body4 # Parent Loop BB0_2 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label3: + loop # label3: i32.load $push9=, 0($9) i32.add $push10=, $pop9, $11 f32.load $push11=, 0($pop10) @@ -73,7 +73,7 @@ foo: # @foo .LBB0_7: # %for.cond12.preheader end_loop end_block # label0: - block + block i32.const $push14=, -15 i32.add $push101=, $3, $pop14 tee_local $push100=, $4=, $pop101 @@ -93,7 +93,7 @@ foo: # @foo .LBB0_9: # %for.body15 # =>This Loop Header: Depth=1 # Child Loop BB0_11 Depth 2 - loop # label5: + loop # label5: i32.load $push21=, 0($1) i32.const $push122=, 2 i32.shl $push121=, $10, $pop122 @@ -140,7 +140,7 @@ foo: # @foo i32.const $push106=, 4 i32.add $push33=, $9, $pop106 f32.load $14=, 0($pop33) - block + block i32.const $push105=, 2 i32.lt_s $push20=, $2, $pop105 br_if 0, $pop20 # 0: down to label6 @@ -151,7 +151,7 @@ foo: # @foo .LBB0_11: # %for.body33 # Parent Loop BB0_9 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label7: + loop # label7: i32.load $push34=, 0($12) i32.add $push140=, $pop34, $8 tee_local $push139=, $9=, $pop140 @@ -275,7 +275,7 @@ foo: # @foo i32.add $10=, $5, $pop76 .LBB0_14: # %for.cond73.preheader end_block # label4: - block + block i32.ge_s $push77=, $10, $3 br_if 0, $pop77 # 0: down to label8 # BB#15: # %for.body75.lr.ph @@ -287,13 +287,13 @@ foo: # @foo .LBB0_16: # %for.body75 # =>This Loop Header: Depth=1 # Child Loop BB0_18 Depth 2 - loop # label9: + loop # label9: i32.const $push163=, 2 i32.shl $push162=, $10, $pop163 tee_local $push161=, $11=, $pop162 i32.add $push79=, $8, $pop161 f32.load $25=, 0($pop79) - block + block i32.const $push160=, 2 i32.lt_s $push78=, $2, $pop160 br_if 0, $pop78 # 0: down to label10 @@ -304,7 +304,7 @@ foo: # @foo .LBB0_18: # %for.body81 # Parent Loop BB0_16 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label11: + loop # label11: i32.load $push80=, 0($9) i32.add $push81=, $pop80, $11 f32.load $push82=, 0($pop81) @@ -366,7 +366,7 @@ main: # @main i32.store 8($3), $pop36 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label12: + loop # label12: i32.const $push52=, 64 i32.add $push6=, $1, $pop52 f32.convert_s/i32 $push51=, $2 @@ -405,8 +405,8 @@ main: # @main call foo@FUNCTION, $pop53, $pop35, $pop17, $pop16 .LBB1_3: # %for.body16 # =>This Inner Loop Header: Depth=1 - block - loop # label14: + block + loop # label14: f32.load $push23=, 0($2) f32.convert_s/i32 $push60=, $1 tee_local $push59=, $0=, $pop60 @@ -455,5 +455,5 @@ buffer: .size buffer, 256 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20060905-1.c.s b/test/torture-s/20060905-1.c.s index 8e2b9902f..0e7f9ad28 100644 --- a/test/torture-s/20060905-1.c.s +++ b/test/torture-s/20060905-1.c.s @@ -13,8 +13,8 @@ main: # @main i32.const $2=, 0 .LBB0_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label0: - block + loop # label0: + block i32.const $push6=, 128 i32.lt_s $push0=, $2, $pop6 br_if 0, $pop0 # 0: down to label1 @@ -38,7 +38,7 @@ main: # @main br_if 0, $pop2 # 0: up to label0 # BB#4: # %foo.exit end_loop - block + block i32.const $push3=, 128 i32.ne $push4=, $1, $pop3 br_if 0, $pop4 # 0: down to label2 @@ -71,5 +71,5 @@ g: .size g, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20060910-1.c.s b/test/torture-s/20060910-1.c.s index aa406b398..f5c740494 100644 --- a/test/torture-s/20060910-1.c.s +++ b/test/torture-s/20060910-1.c.s @@ -23,7 +23,7 @@ check_header: # @check_header .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.load $push17=, 0($0) tee_local $push16=, $2=, $pop17 i32.load $push15=, 4($0) @@ -37,7 +37,7 @@ check_header: # @check_header i32.store 0($0), $pop18 .LBB1_2: # %for.inc end_block # label0: - block + block i32.ge_u $push2=, $2, $1 br_if 0, $pop2 # 0: down to label1 # BB#3: # %cond.true.1 @@ -47,7 +47,7 @@ check_header: # @check_header i32.store 0($0), $pop20 .LBB1_4: # %for.inc.1 end_block # label1: - block + block i32.ge_u $push4=, $2, $1 br_if 0, $pop4 # 0: down to label2 # BB#5: # %cond.true.2 @@ -57,7 +57,7 @@ check_header: # @check_header i32.store 0($0), $pop22 .LBB1_6: # %for.inc.2 end_block # label2: - block + block i32.ge_u $push6=, $2, $1 br_if 0, $pop6 # 0: down to label3 # BB#7: # %cond.true.3 @@ -67,7 +67,7 @@ check_header: # @check_header i32.store 0($0), $pop24 .LBB1_8: # %for.inc.3 end_block # label3: - block + block i32.ge_u $push8=, $2, $1 br_if 0, $pop8 # 0: down to label4 # BB#9: # %cond.true.4 @@ -77,7 +77,7 @@ check_header: # @check_header i32.store 0($0), $pop26 .LBB1_10: # %for.inc.4 end_block # label4: - block + block i32.ge_u $push10=, $2, $1 br_if 0, $pop10 # 0: down to label5 # BB#11: # %cond.true.5 @@ -129,4 +129,4 @@ s: .size s, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20060929-1.c.s b/test/torture-s/20060929-1.c.s index 481edf450..26a5d29db 100644 --- a/test/torture-s/20060929-1.c.s +++ b/test/torture-s/20060929-1.c.s @@ -74,4 +74,4 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20060930-1.c.s b/test/torture-s/20060930-1.c.s index 1bedc015f..6a7295e50 100644 --- a/test/torture-s/20060930-1.c.s +++ b/test/torture-s/20060930-1.c.s @@ -8,7 +8,7 @@ bar: # @bar .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -29,7 +29,7 @@ bar: # @bar foo: # @foo .param i32, i32 # BB#0: # %entry - block + block i32.const $push3=, 1 i32.lt_s $push4=, $1, $pop3 br_if 0, $pop4 # 0: down to label1 @@ -48,7 +48,7 @@ foo: # @foo i32.select $0=, $pop0, $pop6, $pop5 .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.call $drop=, bar@FUNCTION, $1, $0 i32.const $push15=, -1 i32.add $push14=, $1, $pop15 @@ -79,5 +79,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20060930-2.c.s b/test/torture-s/20060930-2.c.s index b7d0b7c7a..c19ccfea2 100644 --- a/test/torture-s/20060930-2.c.s +++ b/test/torture-s/20060930-2.c.s @@ -29,7 +29,7 @@ main: # @main i32.const $push6=, 0 i32.const $push0=, t i32.store t($pop6), $pop0 - block + block i32.const $push1=, s i32.const $push5=, s i32.call $push2=, bar@FUNCTION, $pop1, $pop5 @@ -66,5 +66,5 @@ t: .size t, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20061031-1.c.s b/test/torture-s/20061031-1.c.s index 029221cb1..52fa8b535 100644 --- a/test/torture-s/20061031-1.c.s +++ b/test/torture-s/20061031-1.c.s @@ -23,7 +23,7 @@ f: # @f .local i32 # BB#0: # %entry call ff@FUNCTION, $0 - block + block i32.const $push0=, 2 i32.add $push6=, $0, $pop0 tee_local $push5=, $1=, $pop6 @@ -36,7 +36,7 @@ f: # @f .LBB1_2: # %for.inc end_block # label0: call ff@FUNCTION, $0 - block + block i32.add $push2=, $1, $0 i32.const $push7=, 65535 i32.and $push3=, $pop2, $pop7 @@ -75,4 +75,4 @@ nunmap: .size nunmap, 3 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20061101-1.c.s b/test/torture-s/20061101-1.c.s index 3b9200653..f4f5b8770 100644 --- a/test/torture-s/20061101-1.c.s +++ b/test/torture-s/20061101-1.c.s @@ -8,7 +8,7 @@ tar: # @tar .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 36863 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,8 +37,8 @@ bug: # @bug i32.const $3=, 1 .LBB1_1: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.const $push6=, 1 i32.and $push1=, $3, $pop6 i32.eqz $push11=, $pop1 @@ -80,5 +80,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20061101-2.c.s b/test/torture-s/20061101-2.c.s index b3bd4d75e..8860695bf 100644 --- a/test/torture-s/20061101-2.c.s +++ b/test/torture-s/20061101-2.c.s @@ -8,7 +8,7 @@ tar: # @tar .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 36863 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,8 +37,8 @@ bug: # @bug i32.const $3=, 1 .LBB1_1: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.const $push6=, 1 i32.and $push1=, $3, $pop6 i32.eqz $push11=, $pop1 @@ -80,5 +80,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20070201-1.c.s b/test/torture-s/20070201-1.c.s index d42b8cab8..aa1756c47 100644 --- a/test/torture-s/20070201-1.c.s +++ b/test/torture-s/20070201-1.c.s @@ -69,5 +69,5 @@ main: # @main .size .L.str, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype sprintf, i32, i32, i32 diff --git a/test/torture-s/20070212-1.c.s b/test/torture-s/20070212-1.c.s index 84b2c1039..e827f7cc5 100644 --- a/test/torture-s/20070212-1.c.s +++ b/test/torture-s/20070212-1.c.s @@ -40,4 +40,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20070212-2.c.s b/test/torture-s/20070212-2.c.s index ec1f466c5..91ea13098 100644 --- a/test/torture-s/20070212-2.c.s +++ b/test/torture-s/20070212-2.c.s @@ -29,4 +29,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20070212-3.c.s b/test/torture-s/20070212-3.c.s index ee7ee9e59..761d56309 100644 --- a/test/torture-s/20070212-3.c.s +++ b/test/torture-s/20070212-3.c.s @@ -16,7 +16,7 @@ bar: # @bar i32.load $2=, 0($pop4) i32.const $push2=, 1 i32.store 0($0), $pop2 - block + block i32.eqz $push6=, $3 br_if 0, $pop6 # 0: down to label0 # BB#1: # %if.then3 @@ -43,4 +43,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20070424-1.c.s b/test/torture-s/20070424-1.c.s index c9a385534..cee8b076a 100644 --- a/test/torture-s/20070424-1.c.s +++ b/test/torture-s/20070424-1.c.s @@ -32,7 +32,7 @@ do_abort: # @do_abort foo: # @foo .param i32, i32 # BB#0: # %entry - block + block i32.ge_s $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %doit @@ -60,6 +60,6 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/20070517-1.c.s b/test/torture-s/20070517-1.c.s index 9d76edceb..7cd22d687 100644 --- a/test/torture-s/20070517-1.c.s +++ b/test/torture-s/20070517-1.c.s @@ -8,8 +8,8 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block - block + block + block i32.call $push12=, get_kind@FUNCTION tee_local $push11=, $0=, $pop12 i32.const $push0=, 10 @@ -60,5 +60,5 @@ get_kind: # @get_kind .size get_kind, .Lfunc_end1-get_kind - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20070614-1.c.s b/test/torture-s/20070614-1.c.s index d0b220fdb..ab4336f79 100644 --- a/test/torture-s/20070614-1.c.s +++ b/test/torture-s/20070614-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32 # BB#0: # %entry - block + block f64.load $push3=, 0($0) i32.const $push6=, 0 f64.load $push2=, v($pop6) @@ -55,7 +55,7 @@ baz: # @baz .result i32 .local f64 # BB#0: # %entry - block + block i32.const $push8=, 0 f64.load $push7=, v($pop8) tee_local $push6=, $0=, $pop7 @@ -85,7 +85,7 @@ main: # @main .result i32 .local f64 # BB#0: # %entry - block + block i32.const $push8=, 0 f64.load $push7=, v($pop8) tee_local $push6=, $0=, $pop7 @@ -119,5 +119,5 @@ v: .size v, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20070623-1.c.s b/test/torture-s/20070623-1.c.s index 74dc45ae4..bc6c29ce5 100644 --- a/test/torture-s/20070623-1.c.s +++ b/test/torture-s/20070623-1.c.s @@ -177,7 +177,7 @@ nltu: # @nltu main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push34=, -2147483648 i32.const $push33=, 2147483647 i32.call $push0=, nge@FUNCTION, $pop34, $pop33 @@ -310,6 +310,6 @@ main: # @main .size main, .Lfunc_end10-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20070724-1.c.s b/test/torture-s/20070724-1.c.s index 6a1223e5b..f6ae47283 100644 --- a/test/torture-s/20070724-1.c.s +++ b/test/torture-s/20070724-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20070824-1.c.s b/test/torture-s/20070824-1.c.s index 161880e34..ab01cd26c 100644 --- a/test/torture-s/20070824-1.c.s +++ b/test/torture-s/20070824-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20071011-1.c.s b/test/torture-s/20071011-1.c.s index be1636206..edefd845c 100644 --- a/test/torture-s/20071011-1.c.s +++ b/test/torture-s/20071011-1.c.s @@ -11,7 +11,7 @@ foo: # @foo i32.load $1=, 0($0) i32.const $push0=, 0 i32.store 0($0), $pop0 - block + block i32.eqz $push1=, $1 br_if 0, $pop1 # 0: down to label0 # BB#1: # %if.then @@ -38,5 +38,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20071018-1.c.s b/test/torture-s/20071018-1.c.s index 67821dadd..815d90231 100644 --- a/test/torture-s/20071018-1.c.s +++ b/test/torture-s/20071018-1.c.s @@ -47,7 +47,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.call $push1=, foo@FUNCTION, $pop0 i32.eqz $push3=, $pop1 @@ -64,6 +64,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype __builtin_malloc, i32 .functype abort, void diff --git a/test/torture-s/20071029-1.c.s b/test/torture-s/20071029-1.c.s index a3f832191..a0029492a 100644 --- a/test/torture-s/20071029-1.c.s +++ b/test/torture-s/20071029-1.c.s @@ -17,8 +17,8 @@ test: # @test i32.add $push17=, $pop18, $pop1 tee_local $push16=, $1=, $pop17 i32.store test.i($pop0), $pop16 - block - block + block + block i32.ne $push2=, $3, $2 br_if 0, $pop2 # 0: down to label1 # BB#1: # %if.end @@ -93,7 +93,7 @@ foo: # @foo i32.or $1=, $pop6, $pop0 .LBB1_1: # %again # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.store 8($2), $0 i32.const $push14=, 0 i32.const $push13=, 52 @@ -132,6 +132,6 @@ test.i: .size test.i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20071030-1.c.s b/test/torture-s/20071030-1.c.s index eb56b4176..118e930b7 100644 --- a/test/torture-s/20071030-1.c.s +++ b/test/torture-s/20071030-1.c.s @@ -9,7 +9,7 @@ CalcPing: # @CalcPing .result i32 .local f32, i32, i32, i32, f32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -24,7 +24,7 @@ CalcPing: # @CalcPing f32.const $5=, 0x0p0 .LBB0_3: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.add $push3=, $0, $3 f32.load $push19=, 0($pop3) tee_local $push18=, $1=, $pop19 @@ -43,7 +43,7 @@ CalcPing: # @CalcPing # BB#4: # %for.end end_loop i32.const $3=, 9999 - block + block i32.eqz $push20=, $4 br_if 0, $pop20 # 0: down to label2 # BB#5: # %if.end9 @@ -91,7 +91,7 @@ main: # @main f32.const $4=, 0x0p0 .LBB1_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push25=, 8 i32.add $push26=, $5, $pop25 i32.add $push3=, $pop26, $2 @@ -111,7 +111,7 @@ main: # @main br_if 0, $pop5 # 0: up to label3 # BB#2: # %for.end.i end_loop - block + block i32.eqz $push40=, $3 br_if 0, $pop40 # 0: down to label4 # BB#3: # %CalcPing.exit @@ -139,5 +139,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20071108-1.c.s b/test/torture-s/20071108-1.c.s index 837974b63..59c8bfd91 100644 --- a/test/torture-s/20071108-1.c.s +++ b/test/torture-s/20071108-1.c.s @@ -59,7 +59,7 @@ main: # @main i32.sub $push25=, $pop8, $pop9 tee_local $push24=, $1=, $pop25 i32.store __stack_pointer($pop10), $pop24 - block + block i32.const $push14=, 12 i32.add $push15=, $1, $pop14 i32.const $push16=, 8 @@ -106,5 +106,5 @@ foo.s: .size foo.s, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20071120-1.c.s b/test/torture-s/20071120-1.c.s index 8f359fa62..249af9c9f 100644 --- a/test/torture-s/20071120-1.c.s +++ b/test/torture-s/20071120-1.c.s @@ -32,7 +32,7 @@ perform_access_checks: # @perform_access_checks pop_to_parent_deferring_access_checks: # @pop_to_parent_deferring_access_checks .local i32, i32, i32 # BB#0: # %entry - block + block i32.const $push11=, 0 i32.load $push10=, deferred_access_no_check($pop11) tee_local $push9=, $0=, $pop10 @@ -46,8 +46,8 @@ pop_to_parent_deferring_access_checks: # @pop_to_parent_deferring_access_checks return .LBB2_2: # %if.else end_block # label0: - block - block + block + block i32.const $push15=, 0 i32.load $push14=, deferred_access_stack($pop15) tee_local $push13=, $0=, $pop14 @@ -138,6 +138,6 @@ deferred_access_stack: .size deferred_access_stack, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype __builtin_malloc, i32 diff --git a/test/torture-s/20071202-1.c.s b/test/torture-s/20071202-1.c.s index a18694cff..c0c335d83 100644 --- a/test/torture-s/20071202-1.c.s +++ b/test/torture-s/20071202-1.c.s @@ -50,7 +50,7 @@ main: # @main i32.const $push77=, 8 i32.add $push78=, $0, $pop77 call foo@FUNCTION, $pop78 - block + block i32.load $push3=, 8($0) i32.const $push2=, 12 i32.ne $push4=, $pop3, $pop2 @@ -188,5 +188,5 @@ main: # @main .size .Lmain.s, 68 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20071205-1.c.s b/test/torture-s/20071205-1.c.s index 5bc3e496b..c0eb1f391 100644 --- a/test/torture-s/20071205-1.c.s +++ b/test/torture-s/20071205-1.c.s @@ -33,4 +33,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20071211-1.c.s b/test/torture-s/20071211-1.c.s index b7bff70f7..3075ae377 100644 --- a/test/torture-s/20071211-1.c.s +++ b/test/torture-s/20071211-1.c.s @@ -31,7 +31,7 @@ main: # @main i64.and $push4=, $0, $pop3 i64.or $push9=, $pop8, $pop4 i64.store sv($pop19), $pop9 - block + block i64.const $push10=, 16777215 i64.and $push11=, $1, $pop10 i64.eqz $push12=, $pop11 @@ -58,5 +58,5 @@ sv: .size sv, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20071213-1.c.s b/test/torture-s/20071213-1.c.s index c4c2feacc..06a4cd38e 100644 --- a/test/torture-s/20071213-1.c.s +++ b/test/torture-s/20071213-1.c.s @@ -9,9 +9,9 @@ h: # @h .local i32 # BB#0: # %entry i32.load $2=, 0($1) - block - block - block + block + block + block i32.const $push0=, 5 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label2 @@ -20,7 +20,7 @@ h: # @h i32.ne $push3=, $0, $pop2 br_if 2, $pop3 # 2: down to label0 # BB#2: # %sw.bb - block + block i32.const $push9=, 3 i32.ne $push10=, $2, $pop9 br_if 0, $pop10 # 0: down to label3 @@ -71,9 +71,9 @@ f1: # @f1 i32.store __stack_pointer($pop19), $pop23 i32.store 12($4), $2 i32.load $3=, 0($2) - block - block - block + block + block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label6 @@ -139,9 +139,9 @@ f2: # @f2 i32.store __stack_pointer($pop25), $pop29 i32.store 12($6), $4 i32.load $5=, 0($4) - block - block - block + block + block + block i32.const $push0=, 5 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label9 @@ -150,7 +150,7 @@ f2: # @f2 i32.ne $push3=, $0, $pop2 br_if 2, $pop3 # 2: down to label7 # BB#2: # %sw.bb.i - block + block i32.const $push9=, 3 i32.ne $push10=, $5, $pop9 br_if 0, $pop10 # 0: down to label10 @@ -244,5 +244,5 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20071216-1.c.s b/test/torture-s/20071216-1.c.s index a860f16c3..c4bbf9ffd 100644 --- a/test/torture-s/20071216-1.c.s +++ b/test/torture-s/20071216-1.c.s @@ -48,7 +48,7 @@ main: # @main i32.const $push28=, 0 i32.const $push0=, 26 i32.store x($pop28), $pop0 - block + block i32.call $push27=, bar@FUNCTION tee_local $push26=, $0=, $pop27 i32.const $push25=, -37 @@ -115,5 +115,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20071219-1.c.s b/test/torture-s/20071219-1.c.s index 996fa3f56..d147343b3 100644 --- a/test/torture-s/20071219-1.c.s +++ b/test/torture-s/20071219-1.c.s @@ -11,15 +11,15 @@ foo: # @foo i32.const $3=, 0 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.add $push4=, $0, $3 tee_local $push3=, $2=, $pop4 i32.load8_u $push0=, 0($pop3) br_if 1, $pop0 # 1: down to label0 # BB#2: # %if.else # in Loop: Header=BB0_1 Depth=1 - block + block i32.eqz $push9=, $1 br_if 0, $pop9 # 0: down to label2 # BB#3: # %if.then3 @@ -367,5 +367,5 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20071220-1.c.s b/test/torture-s/20071220-1.c.s index 96cdb3682..e25bc1349 100644 --- a/test/torture-s/20071220-1.c.s +++ b/test/torture-s/20071220-1.c.s @@ -85,4 +85,4 @@ bar.b: .size bar.b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20071220-2.c.s b/test/torture-s/20071220-2.c.s index 5bef56c40..c95ec90f6 100644 --- a/test/torture-s/20071220-2.c.s +++ b/test/torture-s/20071220-2.c.s @@ -85,4 +85,4 @@ bar.b: .size bar.b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20080117-1.c.s b/test/torture-s/20080117-1.c.s index 4599141a3..495ade378 100644 --- a/test/torture-s/20080117-1.c.s +++ b/test/torture-s/20080117-1.c.s @@ -56,4 +56,4 @@ gstate_initial: .size gstate_initial, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20080122-1.c.s b/test/torture-s/20080122-1.c.s index 976a9609e..2b236ebe4 100644 --- a/test/torture-s/20080122-1.c.s +++ b/test/torture-s/20080122-1.c.s @@ -91,4 +91,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20080222-1.c.s b/test/torture-s/20080222-1.c.s index 4c0e6537a..4760cf30e 100644 --- a/test/torture-s/20080222-1.c.s +++ b/test/torture-s/20080222-1.c.s @@ -21,7 +21,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load8_u $push0=, space+4($pop3) i32.const $push1=, 5 @@ -47,5 +47,5 @@ space: .size space, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20080408-1.c.s b/test/torture-s/20080408-1.c.s index a210b189c..6443e4802 100644 --- a/test/torture-s/20080408-1.c.s +++ b/test/torture-s/20080408-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20080424-1.c.s b/test/torture-s/20080424-1.c.s index c9849694c..43f7a8dd4 100644 --- a/test/torture-s/20080424-1.c.s +++ b/test/torture-s/20080424-1.c.s @@ -8,7 +8,7 @@ bar: # @bar .param i32, i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push13=, 0 i32.load $push12=, bar.i($pop13) tee_local $push11=, $2=, $pop12 @@ -92,5 +92,5 @@ g: .size g, 1728 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20080502-1.c.s b/test/torture-s/20080502-1.c.s index d85673612..57cef5866 100644 --- a/test/torture-s/20080502-1.c.s +++ b/test/torture-s/20080502-1.c.s @@ -41,7 +41,7 @@ main: # @main i64.const $push1=, 0 i64.const $push0=, -4611967493404098560 call foo@FUNCTION, $0, $pop1, $pop0 - block + block i64.load $push5=, 0($0) i64.load $push4=, 8($0) i64.const $push3=, -8905435550453399112 @@ -64,5 +64,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20080506-1.c.s b/test/torture-s/20080506-1.c.s index 9c16a0386..b9424d2e8 100644 --- a/test/torture-s/20080506-1.c.s +++ b/test/torture-s/20080506-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20080506-2.c.s b/test/torture-s/20080506-2.c.s index d4fcf9e0f..d5e22750f 100644 --- a/test/torture-s/20080506-2.c.s +++ b/test/torture-s/20080506-2.c.s @@ -14,7 +14,7 @@ foo: # @foo i32.load $push1=, 0($1) i32.const $push2=, 2 i32.store 0($pop1), $pop2 - block + block i32.load $push3=, 0($0) i32.const $push5=, 2 i32.ne $push4=, $pop3, $pop5 @@ -66,5 +66,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20080519-1.c.s b/test/torture-s/20080519-1.c.s index 51060a0c5..43654ab21 100644 --- a/test/torture-s/20080519-1.c.s +++ b/test/torture-s/20080519-1.c.s @@ -7,7 +7,7 @@ merge_overlapping_regs: # @merge_overlapping_regs .param i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push4=, -1 i32.ne $push1=, $pop0, $pop4 @@ -44,7 +44,7 @@ regrename_optimize: # @regrename_optimize i32.store __stack_pointer($pop27), $pop35 i64.const $push0=, 0 i64.store 8($6):p2align=2, $pop0 - block + block i32.load $push34=, 0($0) tee_local $push33=, $5=, $pop34 i32.eqz $push54=, $pop33 @@ -55,7 +55,7 @@ regrename_optimize: # @regrename_optimize i32.const $4=, 0 .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push48=, 1 i32.add $2=, $2, $pop48 i32.load $push1=, 4($0) @@ -172,5 +172,5 @@ reg_class_contents: .size reg_class_contents, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20080522-1.c.s b/test/torture-s/20080522-1.c.s index 474f5e32a..5f35359ce 100644 --- a/test/torture-s/20080522-1.c.s +++ b/test/torture-s/20080522-1.c.s @@ -56,7 +56,7 @@ main: # @main i32.store __stack_pointer($pop19), $pop28 i32.const $push0=, 0 i32.store 12($0), $pop0 - block + block i32.const $push27=, i i32.call $push1=, foo@FUNCTION, $pop27 i32.const $push2=, 2 @@ -115,5 +115,5 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20080529-1.c.s b/test/torture-s/20080529-1.c.s index fdf98c93e..eebf1f2f4 100644 --- a/test/torture-s/20080529-1.c.s +++ b/test/torture-s/20080529-1.c.s @@ -29,4 +29,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20080604-1.c.s b/test/torture-s/20080604-1.c.s index ccf14946a..e4d0642f4 100644 --- a/test/torture-s/20080604-1.c.s +++ b/test/torture-s/20080604-1.c.s @@ -6,7 +6,7 @@ .type foo,@function foo: # @foo # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push1=, x($pop0) i32.eqz $push2=, $pop1 @@ -91,5 +91,5 @@ x: .size .L.str, 14 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20080719-1.c.s b/test/torture-s/20080719-1.c.s index 397bbb2ea..c3edce937 100644 --- a/test/torture-s/20080719-1.c.s +++ b/test/torture-s/20080719-1.c.s @@ -76,4 +76,4 @@ cfb_tab32: .size cfb_tab32, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20080813-1.c.s b/test/torture-s/20080813-1.c.s index 7f5791318..723269321 100644 --- a/test/torture-s/20080813-1.c.s +++ b/test/torture-s/20080813-1.c.s @@ -19,7 +19,7 @@ foo: # @foo bar: # @bar .param i32 # BB#0: # %entry - block + block i32.const $push0=, 255 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -47,5 +47,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20081103-1.c.s b/test/torture-s/20081103-1.c.s index bb9eda30c..08da86fd0 100644 --- a/test/torture-s/20081103-1.c.s +++ b/test/torture-s/20081103-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.load $push2=, 1($0):p2align=0 i32.const $push0=, 0 i32.load $push1=, A($pop0) @@ -42,7 +42,7 @@ main: # @main i32.load $push11=, A($pop12) tee_local $push10=, $0=, $pop11 i32.store 1($1):p2align=0, $pop10 - block + block i32.const $push9=, 0 i32.load $push0=, A($pop9) i32.ne $push1=, $0, $pop0 @@ -72,6 +72,6 @@ A: .size A, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/20081112-1.c.s b/test/torture-s/20081112-1.c.s index 32d9c2ca2..0aa87a423 100644 --- a/test/torture-s/20081112-1.c.s +++ b/test/torture-s/20081112-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20081117-1.c.s b/test/torture-s/20081117-1.c.s index fb5c13ea5..53ff7aa71 100644 --- a/test/torture-s/20081117-1.c.s +++ b/test/torture-s/20081117-1.c.s @@ -36,7 +36,7 @@ main: # @main i32.const $push12=, 0 i64.load $push0=, s($pop12) i64.store 8($0), $pop0 - block + block i32.const $push10=, 8 i32.add $push11=, $0, $pop10 i32.const $push1=, -2023406815 @@ -75,5 +75,5 @@ s: .size s, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20081218-1.c.s b/test/torture-s/20081218-1.c.s index 68f161ce1..6ed395726 100644 --- a/test/torture-s/20081218-1.c.s +++ b/test/torture-s/20081218-1.c.s @@ -43,8 +43,8 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block - block + block + block i32.call $push1=, foo@FUNCTION i32.const $push0=, 640034342 i32.ne $push2=, $pop1, $pop0 @@ -53,9 +53,9 @@ main: # @main i32.const $0=, 0 .LBB2_2: # %for.body # =>This Inner Loop Header: Depth=1 - block - block - loop # label4: + block + block + loop # label4: i32.const $push17=, a i32.add $push3=, $0, $pop17 i32.load8_u $push4=, 0($pop3) @@ -85,7 +85,7 @@ main: # @main i32.store a+4($pop23), $pop10 .LBB2_6: # %for.body13 # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.const $push25=, a i32.add $push11=, $0, $pop25 i32.load8_u $push12=, 0($pop11) @@ -134,5 +134,5 @@ a: .size a, 520 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20090113-1.c.s b/test/torture-s/20090113-1.c.s index e2064c186..a203e7c59 100644 --- a/test/torture-s/20090113-1.c.s +++ b/test/torture-s/20090113-1.c.s @@ -33,7 +33,7 @@ msum_i4: # @msum_i4 i32.add $push5=, $7, $pop30 i32.load $push6=, 0($pop5) i32.sub $3=, $pop4, $pop6 - block + block i32.const $push29=, 2 i32.lt_s $push7=, $2, $pop29 br_if 0, $pop7 # 0: down to label0 @@ -51,7 +51,7 @@ msum_i4: # @msum_i4 copy_local $7=, $8 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load $push11=, 0($2) i32.const $push52=, 1 i32.add $push12=, $pop11, $pop52 @@ -80,9 +80,9 @@ msum_i4: # @msum_i4 .LBB0_4: # %do.body # =>This Loop Header: Depth=1 # Child Loop BB0_6 Depth 2 - loop # label2: + loop # label2: i32.const $7=, 0 - block + block br_if 0, $0 # 0: down to label3 # BB#5: # %for.body18.preheader # in Loop: Header=BB0_4 Depth=1 @@ -92,7 +92,7 @@ msum_i4: # @msum_i4 .LBB0_6: # %for.body18 # Parent Loop BB0_4 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label4: + loop # label4: i32.load $push16=, 0($2) i32.add $7=, $pop16, $7 i32.const $push58=, 4 @@ -145,4 +145,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20090113-2.c.s b/test/torture-s/20090113-2.c.s index 474f0a02b..c164a24b0 100644 --- a/test/torture-s/20090113-2.c.s +++ b/test/torture-s/20090113-2.c.s @@ -80,25 +80,25 @@ foobar: # @foobar # Child Loop BB1_3 Depth 2 # Child Loop BB1_6 Depth 2 # Child Loop BB1_8 Depth 3 - block - loop # label1: + block + loop # label1: i32.load $0=, 12($7) - block - block + block + block i32.load $push35=, 0($2) tee_local $push34=, $5=, $pop35 i32.eqz $push69=, $pop34 br_if 0, $pop69 # 0: down to label3 # BB#2: # %while.cond.preheader.i # in Loop: Header=BB1_1 Depth=1 - block + block i32.const $push36=, 1 i32.and $push0=, $5, $pop36 br_if 0, $pop0 # 0: down to label4 .LBB1_3: # %while.body.i # Parent Loop BB1_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label5: + loop # label5: i32.const $push41=, 1 i32.add $0=, $0, $pop41 i32.const $push40=, 1 @@ -133,9 +133,9 @@ foobar: # @foobar # Parent Loop BB1_1 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB1_8 Depth 3 - block - loop # label7: - block + block + loop # label7: + block i32.const $push53=, 2 i32.eq $push5=, $1, $pop53 br_if 0, $pop5 # 0: down to label8 @@ -154,7 +154,7 @@ foobar: # @foobar # Parent Loop BB1_1 Depth=1 # Parent Loop BB1_6 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label9: + loop # label9: i32.load $push59=, 0($0) tee_local $push58=, $1=, $pop59 br_if 3, $pop58 # 3: down to label6 @@ -240,7 +240,7 @@ bmp_iter_set_init: # @bmp_iter_set_init i32.load $push6=, 0($1) tee_local $push5=, $1=, $pop6 i32.store 0($0), $pop5 - block + block br_if 0, $1 # 0: down to label10 # BB#1: # %if.then i32.const $1=, bitmap_zero_bits @@ -269,7 +269,7 @@ bmp_iter_set_init: # @bmp_iter_set_init catchme: # @catchme .param i32 # BB#0: # %entry - block + block i32.const $push0=, 64 i32.or $push1=, $0, $pop0 i32.const $push3=, 64 @@ -309,7 +309,7 @@ bmp_iter_set_tail: # @bmp_iter_set_tail .param i32, i32 .local i32, i32 # BB#0: # %entry - block + block i32.load $push6=, 12($0) tee_local $push5=, $3=, $pop6 i32.const $push4=, 1 @@ -319,7 +319,7 @@ bmp_iter_set_tail: # @bmp_iter_set_tail i32.load $2=, 0($1) .LBB5_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label13: + loop # label13: i32.const $push11=, 1 i32.add $2=, $2, $pop11 i32.const $push10=, 1 @@ -363,5 +363,5 @@ bitmap_zero_bits: .size bitmap_zero_bits, 20 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20090113-3.c.s b/test/torture-s/20090113-3.c.s index f96457d53..55c485c1c 100644 --- a/test/torture-s/20090113-3.c.s +++ b/test/torture-s/20090113-3.c.s @@ -79,10 +79,10 @@ foobar: # @foobar # Child Loop BB1_6 Depth 2 # Child Loop BB1_8 Depth 3 # Child Loop BB1_13 Depth 2 - block - loop # label1: - block - block + block + loop # label1: + block + block i32.eqz $push67=, $0 br_if 0, $pop67 # 0: down to label3 # BB#2: # %while.cond.preheader.i @@ -93,7 +93,7 @@ foobar: # @foobar .LBB1_3: # %while.body.i # Parent Loop BB1_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label4: + loop # label4: i32.const $push42=, 1 i32.shr_u $push41=, $0, $pop42 tee_local $push40=, $0=, $pop41 @@ -120,9 +120,9 @@ foobar: # @foobar # Parent Loop BB1_1 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB1_8 Depth 3 - block - loop # label6: - block + block + loop # label6: + block i32.const $push45=, 2 i32.eq $push5=, $3, $pop45 br_if 0, $pop5 # 0: down to label7 @@ -137,7 +137,7 @@ foobar: # @foobar # Parent Loop BB1_1 Depth=1 # Parent Loop BB1_6 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label8: + loop # label8: i32.load $push49=, 0($2) tee_local $push48=, $0=, $pop49 br_if 3, $pop48 # 3: down to label5 @@ -185,7 +185,7 @@ foobar: # @foobar .LBB1_13: # %while.body21.i # Parent Loop BB1_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label9: + loop # label9: i32.const $push66=, 1 i32.shr_u $push65=, $0, $pop66 tee_local $push64=, $0=, $pop65 @@ -232,7 +232,7 @@ bmp_iter_set_init: # @bmp_iter_set_init i32.load $push6=, 0($1) tee_local $push5=, $1=, $pop6 i32.store 0($0), $pop5 - block + block br_if 0, $1 # 0: down to label10 # BB#1: # %if.then i32.const $1=, bitmap_zero_bits @@ -277,4 +277,4 @@ bitmap_zero_bits: .size bitmap_zero_bits, 20 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20090207-1.c.s b/test/torture-s/20090207-1.c.s index 6c553f1d5..6bba56ae5 100644 --- a/test/torture-s/20090207-1.c.s +++ b/test/torture-s/20090207-1.c.s @@ -41,4 +41,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20090527-1.c.s b/test/torture-s/20090527-1.c.s index 86eebc1ad..0698e1c64 100644 --- a/test/torture-s/20090527-1.c.s +++ b/test/torture-s/20090527-1.c.s @@ -8,7 +8,7 @@ new_unit: # @new_unit .param i32 .local i32 # BB#0: # %entry - block + block i32.load $push8=, 4($0) tee_local $push7=, $1=, $pop8 i32.const $push6=, 1 @@ -22,7 +22,7 @@ new_unit: # @new_unit i32.store 0($pop2), $pop9 .LBB0_2: # %if.end end_block # label0: - block + block i32.load $push3=, 0($0) i32.const $push10=, 1 i32.ne $push4=, $pop3, $pop10 @@ -32,7 +32,7 @@ new_unit: # @new_unit i32.store 0($0), $pop5 .LBB0_4: # %if.end5 end_block # label1: - block + block br_if 0, $1 # 0: down to label2 # BB#5: # %sw.epilog return @@ -58,5 +58,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20090623-1.c.s b/test/torture-s/20090623-1.c.s index c2c23ec02..c70e58004 100644 --- a/test/torture-s/20090623-1.c.s +++ b/test/torture-s/20090623-1.c.s @@ -48,4 +48,4 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20090711-1.c.s b/test/torture-s/20090711-1.c.s index e56f5f81c..95773d1f7 100644 --- a/test/torture-s/20090711-1.c.s +++ b/test/torture-s/20090711-1.c.s @@ -22,7 +22,7 @@ div: # @div main: # @main .result i32 # BB#0: # %entry - block + block i64.const $push0=, -990000000 i64.call $push1=, div@FUNCTION, $pop0 i64.const $push2=, -30212 @@ -40,5 +40,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20090814-1.c.s b/test/torture-s/20090814-1.c.s index efd05c13c..fceac870a 100644 --- a/test/torture-s/20090814-1.c.s +++ b/test/torture-s/20090814-1.c.s @@ -46,7 +46,7 @@ main: # @main i32.const $push6=, 0 i64.const $push1=, 184683593727 i64.store a($pop6):p2align=2, $pop1 - block + block i32.const $push2=, a i32.call $push3=, foo@FUNCTION, $pop2 i32.const $push4=, 42 @@ -82,5 +82,5 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20091229-1.c.s b/test/torture-s/20091229-1.c.s index da7021e6e..9151fd029 100644 --- a/test/torture-s/20091229-1.c.s +++ b/test/torture-s/20091229-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/20100209-1.c.s b/test/torture-s/20100209-1.c.s index 4b90f04af..797827da4 100644 --- a/test/torture-s/20100209-1.c.s +++ b/test/torture-s/20100209-1.c.s @@ -29,4 +29,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20100316-1.c.s b/test/torture-s/20100316-1.c.s index b1c0f5a0e..7c0a257f0 100644 --- a/test/torture-s/20100316-1.c.s +++ b/test/torture-s/20100316-1.c.s @@ -34,7 +34,7 @@ main: # @main i32.const $push4=, 7168 i32.or $push5=, $pop3, $pop4 i32.store16 f+4($pop9), $pop5 - block + block i32.const $push6=, f i32.call $push7=, foo@FUNCTION, $pop6 br_if 0, $pop7 # 0: down to label0 @@ -59,5 +59,5 @@ f: .size f, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20100416-1.c.s b/test/torture-s/20100416-1.c.s index 2c7de6df0..33cf87392 100644 --- a/test/torture-s/20100416-1.c.s +++ b/test/torture-s/20100416-1.c.s @@ -27,7 +27,7 @@ movegt: # @movegt main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push32=, -1 i32.const $push31=, 1 i32.const $push30=, 0 @@ -122,5 +122,5 @@ tests: .size tests, 80 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20100430-1.c.s b/test/torture-s/20100430-1.c.s index 8a4cd60d7..dc8a50521 100644 --- a/test/torture-s/20100430-1.c.s +++ b/test/torture-s/20100430-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20100708-1.c.s b/test/torture-s/20100708-1.c.s index b15b74e94..d10d15774 100644 --- a/test/torture-s/20100708-1.c.s +++ b/test/torture-s/20100708-1.c.s @@ -46,4 +46,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20100805-1.c.s b/test/torture-s/20100805-1.c.s index fde08032d..3bdd2ca64 100644 --- a/test/torture-s/20100805-1.c.s +++ b/test/torture-s/20100805-1.c.s @@ -10,13 +10,13 @@ foo: # @foo # BB#0: # %entry i32.const $push0=, 1 i32.and $0=, $0, $pop0 - block + block i32.eqz $push5=, $1 br_if 0, $pop5 # 0: down to label0 # BB#1: # %for.body.preheader .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push4=, 1 i32.rotl $0=, $0, $pop4 i32.const $push3=, -1 @@ -46,4 +46,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20100827-1.c.s b/test/torture-s/20100827-1.c.s index 194fce392..c9df94e52 100644 --- a/test/torture-s/20100827-1.c.s +++ b/test/torture-s/20100827-1.c.s @@ -10,8 +10,8 @@ foo: # @foo .local i32, i32 # BB#0: # %entry i32.const $2=, 0 - block - block + block + block i32.load8_u $push0=, 0($0) i32.eqz $push7=, $pop0 br_if 0, $pop7 # 0: down to label1 @@ -19,7 +19,7 @@ foo: # @foo i32.const $2=, 0 .LBB0_2: # %if.end # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.add $push4=, $0, $2 tee_local $push3=, $1=, $pop4 i32.eqz $push8=, $pop3 @@ -51,7 +51,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, .L.str i32.call $push1=, foo@FUNCTION, $pop0 i32.const $push2=, 1 @@ -75,5 +75,5 @@ main: # @main .size .L.str, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20101011-1.c.s b/test/torture-s/20101011-1.c.s index 8b2a2c9b3..97ed6de4c 100644 --- a/test/torture-s/20101011-1.c.s +++ b/test/torture-s/20101011-1.c.s @@ -40,7 +40,7 @@ k: .size k, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype signal, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/20101013-1.c.s b/test/torture-s/20101013-1.c.s index 190882398..2e1e8e93a 100644 --- a/test/torture-s/20101013-1.c.s +++ b/test/torture-s/20101013-1.c.s @@ -59,7 +59,7 @@ get_addr_base_and_unit_offset: # @get_addr_base_and_unit_offset build_int_cst: # @build_int_cst .param i64 # BB#0: # %entry - block + block i64.const $push0=, 4 i64.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -74,5 +74,5 @@ build_int_cst: # @build_int_cst .size build_int_cst, .Lfunc_end3-build_int_cst - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20101025-1.c.s b/test/torture-s/20101025-1.c.s index 344f1035b..e14cfb4f5 100644 --- a/test/torture-s/20101025-1.c.s +++ b/test/torture-s/20101025-1.c.s @@ -42,7 +42,7 @@ main: # @main .result i32 # BB#0: # %entry i32.call $drop=, f3@FUNCTION - block + block i32.const $push3=, 0 i32.load $push0=, g_3($pop3) i32.const $push1=, 1 @@ -84,6 +84,6 @@ g_7: .size g_7, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20111208-1.c.s b/test/torture-s/20111208-1.c.s index 0853f3593..a1d6a1972 100644 --- a/test/torture-s/20111208-1.c.s +++ b/test/torture-s/20111208-1.c.s @@ -13,15 +13,15 @@ pack_unpack: # @pack_unpack i32.add $2=, $1, $pop0 .LBB0_1: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.ge_u $push1=, $1, $2 br_if 1, $pop1 # 1: down to label0 # BB#2: # %while.body # in Loop: Header=BB0_1 Depth=1 i32.const $push11=, 1 i32.add $3=, $1, $pop11 - block + block i32.load8_s $push10=, 0($1) tee_local $push9=, $4=, $pop10 i32.const $push8=, 108 @@ -83,8 +83,8 @@ main: # @main i32.const $2=, .L.str.1 .LBB2_1: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: i32.const $push8=, .L.str.1+2 i32.ge_u $push0=, $2, $pop8 br_if 1, $pop0 # 1: down to label3 @@ -92,7 +92,7 @@ main: # @main # in Loop: Header=BB2_1 Depth=1 i32.const $push12=, 1 i32.add $0=, $2, $pop12 - block + block i32.load8_s $push11=, 0($2) tee_local $push10=, $1=, $pop11 i32.const $push9=, 108 @@ -124,7 +124,7 @@ main: # @main .LBB2_6: # %pack_unpack.exit end_loop end_block # label3: - block + block i32.load8_u $push1=, 0($3) br_if 0, $pop1 # 0: down to label6 # BB#7: # %if.end @@ -159,6 +159,6 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strlen, i32, i32 .functype abort, void diff --git a/test/torture-s/20111212-1.c.s b/test/torture-s/20111212-1.c.s index 99cbcb169..0f2e8a4c5 100644 --- a/test/torture-s/20111212-1.c.s +++ b/test/torture-s/20111212-1.c.s @@ -7,7 +7,7 @@ frob_entry: # @frob_entry .param i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0):p2align=0 i32.const $push1=, 63 i32.gt_u $push2=, $pop0, $pop1 @@ -55,4 +55,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20111227-1.c.s b/test/torture-s/20111227-1.c.s index e2afb914d..43f684789 100644 --- a/test/torture-s/20111227-1.c.s +++ b/test/torture-s/20111227-1.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i32 # BB#0: # %entry - block + block i32.const $push0=, -1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -29,7 +29,7 @@ foo: # @foo .param i32, i32 # BB#0: # %entry i32.load16_u $0=, 0($0) - block + block i32.eqz $push4=, $1 br_if 0, $pop4 # 0: down to label1 # BB#1: # %if.then @@ -73,5 +73,5 @@ v: .size v, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20111227-2.c.s b/test/torture-s/20111227-2.c.s index bd2ee1df7..19b7b0421 100644 --- a/test/torture-s/20111227-2.c.s +++ b/test/torture-s/20111227-2.c.s @@ -7,8 +7,8 @@ bar: # @bar .param i32 # BB#0: # %entry - block - block + block + block i32.const $push1=, 2 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label1 @@ -22,7 +22,7 @@ bar: # @bar br_if 1, $pop6 # 1: down to label0 .LBB0_2: # %if.end end_block # label1: - block + block i32.const $push8=, 1 i32.ne $push9=, $0, $pop8 br_if 0, $pop9 # 0: down to label2 @@ -34,7 +34,7 @@ bar: # @bar br_if 1, $pop11 # 1: down to label0 .LBB0_4: # %if.end9 end_block # label2: - block + block br_if 0, $0 # 0: down to label3 # BB#5: # %if.end9 i32.const $push13=, 0 @@ -63,9 +63,9 @@ foo: # @foo # BB#0: # %entry i32.const $push6=, 0 i32.load8_u $2=, v($pop6) - block - block - block + block + block + block i32.eqz $push8=, $1 br_if 0, $pop8 # 0: down to label6 # BB#1: # %entry @@ -155,5 +155,5 @@ l: .size l, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20111227-3.c.s b/test/torture-s/20111227-3.c.s index 020b15362..075384325 100644 --- a/test/torture-s/20111227-3.c.s +++ b/test/torture-s/20111227-3.c.s @@ -7,8 +7,8 @@ bar: # @bar .param i32 # BB#0: # %entry - block - block + block + block i32.const $push1=, 2 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label1 @@ -22,7 +22,7 @@ bar: # @bar br_if 1, $pop5 # 1: down to label0 .LBB0_2: # %if.end end_block # label1: - block + block i32.const $push7=, 1 i32.ne $push8=, $0, $pop7 br_if 0, $pop8 # 0: down to label2 @@ -34,7 +34,7 @@ bar: # @bar br_if 1, $pop10 # 1: down to label0 .LBB0_4: # %if.end9 end_block # label2: - block + block br_if 0, $0 # 0: down to label3 # BB#5: # %if.end9 i32.const $push12=, 0 @@ -63,9 +63,9 @@ foo: # @foo # BB#0: # %entry i32.const $push6=, 0 i32.load8_s $2=, v($pop6) - block - block - block + block + block + block i32.eqz $push8=, $1 br_if 0, $pop8 # 0: down to label6 # BB#1: # %entry @@ -155,5 +155,5 @@ l: .size l, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20120105-1.c.s b/test/torture-s/20120105-1.c.s index 60dabf120..1105f9426 100644 --- a/test/torture-s/20120105-1.c.s +++ b/test/torture-s/20120105-1.c.s @@ -62,4 +62,4 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20120111-1.c.s b/test/torture-s/20120111-1.c.s index 08ade2abd..9f53ff147 100644 --- a/test/torture-s/20120111-1.c.s +++ b/test/torture-s/20120111-1.c.s @@ -24,7 +24,7 @@ f0a: # @f0a main: # @main .result i32 # BB#0: # %entry - block + block i64.const $push0=, -6352373499721454287 i32.call $push1=, f0a@FUNCTION, $pop0 i32.const $push2=, -1 @@ -42,5 +42,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20120207-1.c.s b/test/torture-s/20120207-1.c.s index 72da61910..91aa64ab3 100644 --- a/test/torture-s/20120207-1.c.s +++ b/test/torture-s/20120207-1.c.s @@ -23,7 +23,7 @@ test: # @test main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 2 i32.call $push1=, test@FUNCTION, $pop0 i32.const $push2=, 49 @@ -48,5 +48,5 @@ main: # @main .size .L.str, 11 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20120427-1.c.s b/test/torture-s/20120427-1.c.s index 3f8f98dfc..a9ece088b 100644 --- a/test/torture-s/20120427-1.c.s +++ b/test/torture-s/20120427-1.c.s @@ -10,7 +10,7 @@ sreal_compare: # @sreal_compare .local i32, i32, i32 # BB#0: # %entry i32.const $4=, 1 - block + block i32.load $push9=, 4($0) tee_local $push8=, $2=, $pop9 i32.load $push7=, 4($1) @@ -65,8 +65,8 @@ main: # @main i32.load $0=, a+4($pop42) .LBB1_1: # %if.end # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.const $push52=, 3 i32.shl $push51=, $6, $pop52 tee_local $push50=, $7=, $pop51 @@ -74,15 +74,15 @@ main: # @main i32.add $8=, $pop50, $pop49 i32.const $push48=, a+4 i32.add $7=, $7, $pop48 - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block i32.eqz $push74=, $6 br_if 0, $pop74 # 0: down to label11 # BB#2: # %if.end14 @@ -92,7 +92,7 @@ main: # @main br_if 1, $pop0 # 1: down to label10 # BB#3: # %land.lhs.true16 # in Loop: Header=BB1_1 Depth=1 - block + block i32.load $push55=, 0($7) tee_local $push54=, $9=, $pop55 i32.gt_s $push1=, $pop54, $0 @@ -159,7 +159,7 @@ main: # @main br_if 0, $pop6 # 0: down to label8 # BB#15: # %land.lhs.true16.1 # in Loop: Header=BB1_1 Depth=1 - block + block i32.load $push61=, 0($7) tee_local $push60=, $9=, $pop61 i32.gt_s $push7=, $pop60, $2 @@ -278,5 +278,5 @@ a: .size a, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20120427-2.c.s b/test/torture-s/20120427-2.c.s index ae024d27f..4fa1427c5 100644 --- a/test/torture-s/20120427-2.c.s +++ b/test/torture-s/20120427-2.c.s @@ -10,7 +10,7 @@ sreal_compare: # @sreal_compare .local i32, i32, i32 # BB#0: # %entry i32.const $4=, 1 - block + block i32.load $push9=, 4($0) tee_local $push8=, $2=, $pop9 i32.load $push7=, 4($1) @@ -65,8 +65,8 @@ main: # @main i32.load $0=, a+4($pop42) .LBB1_1: # %if.end # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.const $push52=, 3 i32.shl $push51=, $6, $pop52 tee_local $push50=, $7=, $pop51 @@ -74,15 +74,15 @@ main: # @main i32.add $8=, $pop50, $pop49 i32.const $push48=, a+4 i32.add $7=, $7, $pop48 - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block i32.eqz $push74=, $6 br_if 0, $pop74 # 0: down to label11 # BB#2: # %if.end14 @@ -92,7 +92,7 @@ main: # @main br_if 1, $pop0 # 1: down to label10 # BB#3: # %land.lhs.true16 # in Loop: Header=BB1_1 Depth=1 - block + block i32.load $push55=, 0($7) tee_local $push54=, $9=, $pop55 i32.gt_s $push1=, $pop54, $0 @@ -159,7 +159,7 @@ main: # @main br_if 0, $pop6 # 0: down to label8 # BB#15: # %land.lhs.true16.1 # in Loop: Header=BB1_1 Depth=1 - block + block i32.load $push61=, 0($7) tee_local $push60=, $9=, $pop61 i32.gt_s $push7=, $pop60, $2 @@ -278,5 +278,5 @@ a: .size a, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20120615-1.c.s b/test/torture-s/20120615-1.c.s index 4675b799b..3100ac6d1 100644 --- a/test/torture-s/20120615-1.c.s +++ b/test/torture-s/20120615-1.c.s @@ -7,7 +7,7 @@ test1: # @test1 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 17 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -44,5 +44,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20120808-1.c.s b/test/torture-s/20120808-1.c.s index ae854bc61..524741020 100644 --- a/test/torture-s/20120808-1.c.s +++ b/test/torture-s/20120808-1.c.s @@ -34,18 +34,18 @@ main: # @main i32.const $3=, 0 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.add $push44=, $0, $3 tee_local $push43=, $1=, $pop44 i32.load8_u $2=, 0($pop43) - block - block + block + block i32.const $push42=, 25 i32.eq $push7=, $3, $pop42 br_if 0, $pop7 # 0: down to label2 # BB#2: # %for.body # in Loop: Header=BB0_1 Depth=1 - block + block i32.const $push45=, 2 i32.eq $push8=, $3, $pop45 br_if 0, $pop8 # 0: down to label3 @@ -84,7 +84,7 @@ main: # @main br_if 0, $pop12 # 0: up to label0 # BB#8: # %for.end end_loop - block + block i32.load8_u $push14=, 0($5) i32.const $push13=, 255 i32.ne $push15=, $pop14, $pop13 @@ -160,6 +160,6 @@ cp: .size cp, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20120817-1.c.s b/test/torture-s/20120817-1.c.s index 29c092b30..16f5f9f20 100644 --- a/test/torture-s/20120817-1.c.s +++ b/test/torture-s/20120817-1.c.s @@ -28,7 +28,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i64.call $push1=, f@FUNCTION i64.const $push0=, 16 i64.ne $push2=, $pop1, $pop0 @@ -55,6 +55,6 @@ foo: .size foo, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/20120919-1.c.s b/test/torture-s/20120919-1.c.s index bdd7d7484..4c1e09d42 100644 --- a/test/torture-s/20120919-1.c.s +++ b/test/torture-s/20120919-1.c.s @@ -7,7 +7,7 @@ init: # @init .param i32, i32 # BB#0: # %entry - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.then i32.const $push0=, 0 @@ -41,7 +41,7 @@ main: # @main i32.const $push19=, 16 i32.add $push20=, $7, $pop19 call init@FUNCTION, $pop18, $pop20 - block + block i32.load $push23=, 12($7) tee_local $push22=, $0=, $pop23 i32.const $push21=, 0 @@ -56,8 +56,8 @@ main: # @main i32.const $5=, 0 .LBB1_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label2: - block + loop # label2: + block br_if 0, $6 # 0: down to label3 # BB#3: # %if.then # in Loop: Header=BB1_2 Depth=1 @@ -142,5 +142,5 @@ pi: .size pi, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20121108-1.c.s b/test/torture-s/20121108-1.c.s index 615247940..632237e53 100644 --- a/test/torture-s/20121108-1.c.s +++ b/test/torture-s/20121108-1.c.s @@ -12,8 +12,8 @@ strtoul1: # @strtoul1 i32.add $push1=, $0, $pop0 i32.store 0($1), $pop1 i32.const $1=, 192 - block - block + block + block i32.const $push2=, temp i32.eq $push3=, $0, $pop2 br_if 0, $pop3 # 0: down to label1 @@ -60,7 +60,7 @@ string_to_ip: # @string_to_ip tee_local $push35=, $2=, $pop36 i32.store __stack_pointer($pop23), $pop35 i32.const $1=, 0 - block + block i32.eqz $push57=, $0 br_if 0, $pop57 # 0: down to label2 # BB#1: # %if.end9 @@ -71,8 +71,8 @@ string_to_ip: # @string_to_ip i32.shl $push3=, $pop0, $pop42 i32.const $push4=, 65280 i32.and $0=, $pop3, $pop4 - block - block + block + block i32.load $push41=, 12($2) tee_local $push40=, $1=, $pop41 i32.const $push39=, 1 @@ -174,7 +174,7 @@ main: # @main i32.store 0($1), $pop2 i32.const $push16=, .L.str i32.call $drop=, printf@FUNCTION, $pop16, $1 - block + block i32.const $push15=, 0 i32.load $push3=, result($pop15) i32.ne $push4=, $0, $pop3 @@ -226,7 +226,7 @@ result: .size .Lstr, 7 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype printf, i32, i32 .functype puts, i32, i32 diff --git a/test/torture-s/20131127-1.c.s b/test/torture-s/20131127-1.c.s index dc9e0b895..1bb747907 100644 --- a/test/torture-s/20131127-1.c.s +++ b/test/torture-s/20131127-1.c.s @@ -148,4 +148,4 @@ e: .size e, 14 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20140212-1.c.s b/test/torture-s/20140212-1.c.s index 3d224e243..033246060 100644 --- a/test/torture-s/20140212-1.c.s +++ b/test/torture-s/20140212-1.c.s @@ -35,9 +35,9 @@ fn1: # @fn1 i32.load $3=, d($pop7) .LBB0_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label0: - block - block + loop # label0: + block + block i32.eqz $push30=, $3 br_if 0, $pop30 # 0: down to label2 # BB#2: # %if.then @@ -107,9 +107,9 @@ main: # @main i32.const $4=, 0 .LBB1_1: # %for.cond.i # =>This Inner Loop Header: Depth=1 - loop # label3: - block - block + loop # label3: + block + block i32.eqz $push32=, $2 br_if 0, $pop32 # 0: down to label5 # BB#2: # %if.then.i @@ -143,7 +143,7 @@ main: # @main i32.const $push5=, 147 i32.mul $push6=, $1, $pop5 i32.store8 g($pop28), $pop6 - block + block i32.const $push7=, 1 i32.ne $push8=, $4, $pop7 br_if 0, $pop8 # 0: down to label6 @@ -256,5 +256,5 @@ h: .size h, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/20140326-1.c.s b/test/torture-s/20140326-1.c.s index 486f0c9b0..ea5a25eb1 100644 --- a/test/torture-s/20140326-1.c.s +++ b/test/torture-s/20140326-1.c.s @@ -23,4 +23,4 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/20140425-1.c.s b/test/torture-s/20140425-1.c.s index 25f3a160b..dc0307242 100644 --- a/test/torture-s/20140425-1.c.s +++ b/test/torture-s/20140425-1.c.s @@ -23,7 +23,7 @@ main: # @main tee_local $push14=, $0=, $pop15 i32.shl $push1=, $pop0, $pop14 i32.store 12($1), $pop1 - block + block i32.const $push2=, 30 i32.le_u $push3=, $0, $pop2 br_if 0, $pop3 # 0: down to label0 @@ -55,5 +55,5 @@ set: # @set .size set, .Lfunc_end1-set - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/900409-1.c.s b/test/torture-s/900409-1.c.s index be53c7d66..492b1ef90 100644 --- a/test/torture-s/900409-1.c.s +++ b/test/torture-s/900409-1.c.s @@ -105,5 +105,5 @@ main: # @main .size main, .Lfunc_end6-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920202-1.c.s b/test/torture-s/920202-1.c.s index 5043618be..4b0f3726e 100644 --- a/test/torture-s/920202-1.c.s +++ b/test/torture-s/920202-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920409-1.c.s b/test/torture-s/920409-1.c.s index c6cc211de..52a682710 100644 --- a/test/torture-s/920409-1.c.s +++ b/test/torture-s/920409-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920410-1.c.s b/test/torture-s/920410-1.c.s index b81f204f7..cb98da048 100644 --- a/test/torture-s/920410-1.c.s +++ b/test/torture-s/920410-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920411-1.c.s b/test/torture-s/920411-1.c.s index db4bf2256..1f9cd7b7c 100644 --- a/test/torture-s/920411-1.c.s +++ b/test/torture-s/920411-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920428-1.c.s b/test/torture-s/920428-1.c.s index 4f550665b..b167b3118 100644 --- a/test/torture-s/920428-1.c.s +++ b/test/torture-s/920428-1.c.s @@ -21,7 +21,7 @@ x: # @x main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.eqz $push2=, $pop0 br_if 0, $pop2 # 0: down to label0 @@ -44,6 +44,6 @@ main: # @main .size .L.str, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/920429-1.c.s b/test/torture-s/920429-1.c.s index 0b734d2d6..fd7bfe3bf 100644 --- a/test/torture-s/920429-1.c.s +++ b/test/torture-s/920429-1.c.s @@ -69,5 +69,5 @@ j: .size j, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920501-1.c.s b/test/torture-s/920501-1.c.s index 861ec68bd..d15441bdf 100644 --- a/test/torture-s/920501-1.c.s +++ b/test/torture-s/920501-1.c.s @@ -8,7 +8,7 @@ x: # @x .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push6=, 0 i32.load $push0=, s($pop6) br_if 0, $pop0 # 0: down to label0 @@ -56,5 +56,5 @@ s: .size s, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920501-2.c.s b/test/torture-s/920501-2.c.s index 92889e7c6..c198bbd25 100644 --- a/test/torture-s/920501-2.c.s +++ b/test/torture-s/920501-2.c.s @@ -8,14 +8,14 @@ gcd_ll: # @gcd_ll .param i64, i64 .result i32 # BB#0: # %entry - block - block + block + block i64.eqz $push0=, $1 br_if 0, $pop0 # 0: down to label1 # BB#1: # %if.end.preheader .LBB0_2: # %if.end # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i64.rem_u $push7=, $0, $1 tee_local $push6=, $0=, $pop7 i64.eqz $push1=, $pop6 @@ -51,8 +51,8 @@ powmod_ll: # @powmod_ll .local i32, i32, i64 # BB#0: # %entry i64.const $5=, 1 - block - block + block + block i32.eqz $push21=, $1 br_if 0, $pop21 # 0: down to label4 # BB#1: # %for.body.preheader @@ -60,7 +60,7 @@ powmod_ll: # @powmod_ll copy_local $4=, $1 .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.const $push12=, 1 i32.add $3=, $3, $pop12 i32.const $push11=, 1 @@ -78,10 +78,10 @@ powmod_ll: # @powmod_ll copy_local $5=, $0 .LBB1_5: # %for.body4 # =>This Inner Loop Header: Depth=1 - loop # label6: + loop # label6: i64.mul $push2=, $5, $5 i64.rem_u $5=, $pop2, $2 - block + block i32.const $push16=, 1 i32.const $push15=, -2 i32.add $push3=, $3, $pop15 @@ -143,11 +143,11 @@ facts: # @facts # Child Loop BB2_19 Depth 2 # Child Loop BB2_22 Depth 2 # Child Loop BB2_29 Depth 2 - loop # label8: + loop # label8: copy_local $6=, $13 copy_local $13=, $5 i64.const $14=, 1 - block + block i32.eqz $push106=, $3 br_if 0, $pop106 # 0: down to label9 # BB#2: # %for.body.i.preheader @@ -158,7 +158,7 @@ facts: # @facts .LBB2_3: # %for.body.i # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label10: + loop # label10: copy_local $push47=, $10 tee_local $push46=, $2=, $pop47 i32.const $push45=, 1 @@ -172,8 +172,8 @@ facts: # @facts # BB#4: # %for.end.i # in Loop: Header=BB2_1 Depth=1 end_loop - block - block + block + block i32.const $push48=, 1 i32.lt_s $push0=, $1, $pop48 br_if 0, $pop0 # 0: down to label12 @@ -183,10 +183,10 @@ facts: # @facts .LBB2_6: # %for.body4.i # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label13: + loop # label13: i64.mul $push1=, $12, $12 i64.rem_u $12=, $pop1, $0 - block + block i32.const $push50=, 1 i32.const $push49=, -2 i32.add $push2=, $2, $pop49 @@ -222,7 +222,7 @@ facts: # @facts .LBB2_11: # %for.body.i114 # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label15: + loop # label15: copy_local $push61=, $10 tee_local $push60=, $2=, $pop61 i32.const $push59=, 1 @@ -236,8 +236,8 @@ facts: # @facts # BB#12: # %for.end.i116 # in Loop: Header=BB2_1 Depth=1 end_loop - block - block + block + block i32.const $push62=, 1 i32.lt_s $push7=, $1, $pop62 br_if 0, $pop7 # 0: down to label17 @@ -247,10 +247,10 @@ facts: # @facts .LBB2_14: # %for.body4.i125 # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label18: + loop # label18: i64.mul $push8=, $12, $12 i64.rem_u $12=, $pop8, $0 - block + block i32.const $push64=, 1 i32.const $push63=, -2 i32.add $push9=, $2, $pop63 @@ -286,7 +286,7 @@ facts: # @facts .LBB2_19: # %for.body.i88 # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label20: + loop # label20: copy_local $push75=, $10 tee_local $push74=, $2=, $pop75 i32.const $push73=, 1 @@ -309,10 +309,10 @@ facts: # @facts .LBB2_22: # %for.body4.i99 # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label21: + loop # label21: i64.mul $push15=, $12, $12 i64.rem_u $12=, $pop15, $0 - block + block i32.const $push78=, 1 i32.const $push77=, -2 i32.add $push16=, $2, $pop77 @@ -339,7 +339,7 @@ facts: # @facts .LBB2_26: # %powmod_ll.exit107 # in Loop: Header=BB2_1 Depth=1 end_block # label9: - block + block i64.add $push86=, $14, $4 tee_local $push85=, $9=, $pop86 i64.sub $push23=, $13, $pop85 @@ -352,7 +352,7 @@ facts: # @facts i64.and $push26=, $8, $pop83 i64.mul $push27=, $pop25, $pop26 i64.rem_u $8=, $pop27, $0 - block + block i32.ne $push28=, $7, $16 br_if 0, $pop28 # 0: down to label24 # BB#27: # %if.then19 @@ -361,7 +361,7 @@ facts: # @facts i64.and $12=, $8, $pop88 i32.const $push87=, 1 i32.add $17=, $17, $pop87 - block + block i64.eqz $push29=, $0 br_if 0, $pop29 # 0: down to label25 # BB#28: # %if.end.i.preheader @@ -370,8 +370,8 @@ facts: # @facts .LBB2_29: # %if.end.i # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label27: + block + loop # label27: i64.rem_u $push90=, $12, $14 tee_local $push89=, $12=, $pop90 i64.eqz $push30=, $pop89 @@ -439,7 +439,7 @@ main: # @main i32.const $push3=, 3 i32.const $push2=, 27 call facts@FUNCTION, $pop5, $pop4, $pop3, $pop2 - block + block i32.const $push14=, 0 i32.load $push6=, factab($pop14) i32.const $push7=, 7 @@ -479,6 +479,6 @@ factab: .size factab, 40 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/920501-6.c.s b/test/torture-s/920501-6.c.s index b176daefd..e78642d50 100644 --- a/test/torture-s/920501-6.c.s +++ b/test/torture-s/920501-6.c.s @@ -12,7 +12,7 @@ str2llu: # @str2llu i64.load8_s $push1=, 0($0) i64.const $push10=, -48 i64.add $2=, $pop1, $pop10 - block + block i32.load8_u $push9=, 1($0) tee_local $push8=, $1=, $pop9 i32.eqz $push16=, $pop8 @@ -22,7 +22,7 @@ str2llu: # @str2llu i32.add $0=, $0, $pop2 .LBB0_2: # %if.end # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i64.const $push15=, 10 i64.mul $push3=, $2, $pop15 i64.extend_u/i32 $push4=, $1 @@ -60,7 +60,7 @@ sqrtllu: # @sqrtllu i64.const $2=, 0 .LBB1_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i64.const $push14=, 1 i64.add $2=, $2, $pop14 i64.const $push13=, 1 @@ -86,7 +86,7 @@ sqrtllu: # @sqrtllu i64.add $2=, $pop17, $pop6 .LBB1_3: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i64.div_u $push25=, $0, $2 tee_local $push24=, $1=, $pop25 i64.add $push7=, $1, $2 @@ -113,7 +113,7 @@ plist: # @plist .local i32, i32, i64, i64, i32 # BB#0: # %entry copy_local $4=, $2 - block + block i64.gt_u $push0=, $0, $1 br_if 0, $pop0 # 0: down to label4 # BB#1: # %for.cond.i.preheader.preheader @@ -123,13 +123,13 @@ plist: # @plist # Child Loop BB2_3 Depth 2 # Child Loop BB2_5 Depth 2 # Child Loop BB2_8 Depth 2 - loop # label5: + loop # label5: copy_local $5=, $0 i64.const $6=, 0 .LBB2_3: # %for.cond.i # Parent Loop BB2_2 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label6: + loop # label6: i64.const $push23=, 1 i64.add $6=, $6, $pop23 i64.const $push22=, 1 @@ -157,7 +157,7 @@ plist: # @plist .LBB2_5: # %do.body.i # Parent Loop BB2_2 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label7: + loop # label7: i64.div_u $push35=, $0, $6 tee_local $push34=, $5=, $pop35 i64.add $push7=, $5, $6 @@ -169,8 +169,8 @@ plist: # @plist # BB#6: # %sqrtllu.exit # in Loop: Header=BB2_2 Depth=1 end_loop - block - block + block + block i32.wrap/i64 $push38=, $6 tee_local $push37=, $3=, $pop38 i32.const $push36=, 3 @@ -182,7 +182,7 @@ plist: # @plist .LBB2_8: # %for.body3 # Parent Loop BB2_2 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label10: + loop # label10: i64.extend_u/i32 $push10=, $7 i64.rem_u $push11=, $0, $pop10 i64.eqz $push12=, $pop11 @@ -245,13 +245,13 @@ main: # @main # Child Loop BB3_2 Depth 2 # Child Loop BB3_4 Depth 2 # Child Loop BB3_7 Depth 2 - loop # label11: + loop # label11: copy_local $5=, $4 i64.const $6=, 0 .LBB3_2: # %for.cond.i.i # Parent Loop BB3_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label12: + loop # label12: i64.const $push37=, 1 i64.add $6=, $6, $pop37 i64.const $push36=, 1 @@ -279,7 +279,7 @@ main: # @main .LBB3_4: # %do.body.i.i # Parent Loop BB3_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label13: + loop # label13: i64.div_u $push49=, $4, $6 tee_local $push48=, $5=, $pop49 i64.add $push6=, $5, $6 @@ -291,8 +291,8 @@ main: # @main # BB#5: # %sqrtllu.exit.i # in Loop: Header=BB3_1 Depth=1 end_loop - block - block + block + block i32.wrap/i64 $push52=, $6 tee_local $push51=, $2=, $pop52 i32.const $push50=, 3 @@ -304,7 +304,7 @@ main: # @main .LBB3_7: # %for.body3.i # Parent Loop BB3_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label16: + loop # label16: i64.extend_u/i32 $push9=, $7 i64.rem_u $push10=, $4, $pop9 i64.eqz $push11=, $pop10 @@ -336,7 +336,7 @@ main: # @main end_loop i64.const $push14=, 0 i64.store 0($3), $pop14 - block + block i64.load $push16=, 0($8) i64.const $push15=, 1234111117 i64.ne $push17=, $pop16, $pop15 @@ -369,6 +369,6 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/920501-8.c.s b/test/torture-s/920501-8.c.s index a260dbc18..991fdd6fa 100644 --- a/test/torture-s/920501-8.c.s +++ b/test/torture-s/920501-8.c.s @@ -136,7 +136,7 @@ main: # @main f64.const $push18=, 0x1p0 i32.const $push17=, 2 i32.call $drop=, va@FUNCTION, $pop19, $pop18, $pop17, $0 - block + block i32.const $push21=, .L.str.1 i32.const $push20=, buf i32.call $push22=, strcmp@FUNCTION, $pop21, $pop20 @@ -174,7 +174,7 @@ buf: .size .L.str.1, 45 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype sprintf, i32, i32, i32 .functype strcmp, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/920501-9.c.s b/test/torture-s/920501-9.c.s index 5b3faa28d..212c77fa7 100644 --- a/test/torture-s/920501-9.c.s +++ b/test/torture-s/920501-9.c.s @@ -82,8 +82,8 @@ print_longlong: # @print_longlong tee_local $push15=, $4=, $pop16 i32.store __stack_pointer($pop7), $pop15 i32.wrap/i64 $3=, $0 - block - block + block + block i64.const $push0=, 32 i64.shr_u $push1=, $0, $pop0 i32.wrap/i64 $push14=, $pop1 @@ -138,7 +138,7 @@ main: # @main i32.const $push23=, 64 i32.add $push24=, $0, $pop23 i32.call $drop=, sprintf@FUNCTION, $pop22, $pop49, $pop24 - block + block i32.const $push1=, .L.str.2 i32.const $push25=, 80 i32.add $push26=, $0, $pop25 @@ -247,7 +247,7 @@ main: # @main .size .L.str.6, 9 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype sprintf, i32, i32, i32 .functype strcmp, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/920506-1.c.s b/test/torture-s/920506-1.c.s index 34846d65c..d380e859b 100644 --- a/test/torture-s/920506-1.c.s +++ b/test/torture-s/920506-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load $push0=, l($pop1) br_if 0, $pop0 # 0: down to label0 @@ -34,6 +34,6 @@ l: .size l, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/920520-1.c.s b/test/torture-s/920520-1.c.s index 78565b3f9..67772685c 100644 --- a/test/torture-s/920520-1.c.s +++ b/test/torture-s/920520-1.c.s @@ -44,5 +44,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920603-1.c.s b/test/torture-s/920603-1.c.s index a08cffa80..45b5db861 100644 --- a/test/torture-s/920603-1.c.s +++ b/test/torture-s/920603-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 65535 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,6 +37,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/920604-1.c.s b/test/torture-s/920604-1.c.s index 89d29dd20..87c9f7fcf 100644 --- a/test/torture-s/920604-1.c.s +++ b/test/torture-s/920604-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920612-1.c.s b/test/torture-s/920612-1.c.s index a75a3192e..4bb154764 100644 --- a/test/torture-s/920612-1.c.s +++ b/test/torture-s/920612-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/920618-1.c.s b/test/torture-s/920618-1.c.s index 6916f168f..7e78bb2c0 100644 --- a/test/torture-s/920618-1.c.s +++ b/test/torture-s/920618-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920625-1.c.s b/test/torture-s/920625-1.c.s index 7817323c2..c4603b5e5 100644 --- a/test/torture-s/920625-1.c.s +++ b/test/torture-s/920625-1.c.s @@ -124,7 +124,7 @@ va1: # @va1 i32.const $push3=, 16 i32.add $push4=, $pop49, $pop3 i32.store 12($2), $pop4 - block + block i32.const $push48=, 0 f64.load $push6=, pts($pop48) f64.load $push5=, 0($1) @@ -218,7 +218,7 @@ va2: # @va2 i32.const $push0=, 8 i32.add $push1=, $1, $pop0 i32.store 12($2), $pop1 - block + block i32.const $push45=, 0 i32.load $push2=, ipts($pop45) i32.load $push3=, 0($1) @@ -328,6 +328,6 @@ ipts: .size ipts, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/920710-1.c.s b/test/torture-s/920710-1.c.s index cc3efb7ef..da522ea33 100644 --- a/test/torture-s/920710-1.c.s +++ b/test/torture-s/920710-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920711-1.c.s b/test/torture-s/920711-1.c.s index bd596df83..baa2002ec 100644 --- a/test/torture-s/920711-1.c.s +++ b/test/torture-s/920711-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/920721-1.c.s b/test/torture-s/920721-1.c.s index 268c2d59d..4e3269611 100644 --- a/test/torture-s/920721-1.c.s +++ b/test/torture-s/920721-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920721-2.c.s b/test/torture-s/920721-2.c.s index 5a6a0f238..b0580ba41 100644 --- a/test/torture-s/920721-2.c.s +++ b/test/torture-s/920721-2.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920721-3.c.s b/test/torture-s/920721-3.c.s index b481b6f5a..2ffccdaea 100644 --- a/test/torture-s/920721-3.c.s +++ b/test/torture-s/920721-3.c.s @@ -8,7 +8,7 @@ ru: # @ru .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push8=, 65535 i32.and $push0=, $0, $pop8 i32.const $push1=, 5 @@ -40,7 +40,7 @@ rs: # @rs .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 65535 i32.and $push1=, $0, $pop0 i32.const $push2=, 5 @@ -71,6 +71,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/920726-1.c.s b/test/torture-s/920726-1.c.s index 23a010ab3..1772497f5 100644 --- a/test/torture-s/920726-1.c.s +++ b/test/torture-s/920726-1.c.s @@ -19,8 +19,8 @@ first: # @first i32.store 12($3), $2 .LBB0_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label0: - block + loop # label0: + block i32.load8_u $push21=, 0($1) tee_local $push20=, $2=, $pop21 i32.const $push19=, 105 @@ -45,7 +45,7 @@ first: # @first .LBB0_3: # %for.cond # in Loop: Header=BB0_1 Depth=1 end_block # label1: - block + block i32.eqz $push24=, $2 br_if 0, $pop24 # 0: down to label2 # BB#4: # %if.else @@ -90,8 +90,8 @@ second: # @second i32.store 12($3), $2 .LBB1_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label3: - block + loop # label3: + block i32.load8_u $push21=, 0($1) tee_local $push20=, $2=, $pop21 i32.const $push19=, 105 @@ -116,7 +116,7 @@ second: # @second .LBB1_3: # %for.cond # in Loop: Header=BB1_1 Depth=1 end_block # label4: - block + block i32.eqz $push24=, $2 br_if 0, $pop24 # 0: down to label5 # BB#4: # %if.else @@ -171,7 +171,7 @@ main: # @main i32.add $push14=, $0, $pop13 i32.const $push20=, .L.str.1 i32.call $drop=, second@FUNCTION, $pop14, $pop20, $0 - block + block i32.const $push19=, .L.str.2 i32.const $push15=, 144 i32.add $push16=, $0, $pop15 @@ -212,7 +212,7 @@ main: # @main .size .L.str.2, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype sprintf, i32, i32, i32 .functype strlen, i32, i32 .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/920730-1.c.s b/test/torture-s/920730-1.c.s index 21c0c47c1..83574be03 100644 --- a/test/torture-s/920730-1.c.s +++ b/test/torture-s/920730-1.c.s @@ -67,5 +67,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920731-1.c.s b/test/torture-s/920731-1.c.s index 74ef17a8e..8e6cec49a 100644 --- a/test/torture-s/920731-1.c.s +++ b/test/torture-s/920731-1.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.const $push3=, 1 i32.and $push0=, $0, $pop3 br_if 0, $pop0 # 0: down to label0 @@ -18,7 +18,7 @@ f: # @f i32.const $1=, 0 .LBB0_2: # %for.inc # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push7=, 1 i32.add $push6=, $1, $pop7 tee_local $push5=, $1=, $pop6 @@ -58,5 +58,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920810-1.c.s b/test/torture-s/920810-1.c.s index fe0199b96..c4db1099b 100644 --- a/test/torture-s/920810-1.c.s +++ b/test/torture-s/920810-1.c.s @@ -38,6 +38,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype exit, void, i32 diff --git a/test/torture-s/920812-1.c.s b/test/torture-s/920812-1.c.s index 393bcb107..fd6476aa1 100644 --- a/test/torture-s/920812-1.c.s +++ b/test/torture-s/920812-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920829-1.c.s b/test/torture-s/920829-1.c.s index 721c051dc..693811cff 100644 --- a/test/torture-s/920829-1.c.s +++ b/test/torture-s/920829-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push6=, 0 i64.load $push0=, c($pop6) i64.const $push1=, 3 @@ -47,6 +47,6 @@ c3: .size c3, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/920908-1.c.s b/test/torture-s/920908-1.c.s index f80f0410e..de4e2f971 100644 --- a/test/torture-s/920908-1.c.s +++ b/test/torture-s/920908-1.c.s @@ -21,7 +21,7 @@ f: # @f i32.add $push16=, $1, $pop0 tee_local $push15=, $2=, $pop16 i32.store 12($3), $pop15 - block + block i32.load $push1=, 0($1) i32.const $push2=, 10 i32.ne $push3=, $pop1, $pop2 @@ -75,6 +75,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/920908-2.c.s b/test/torture-s/920908-2.c.s index 11ae41f5b..699d1beca 100644 --- a/test/torture-s/920908-2.c.s +++ b/test/torture-s/920908-2.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920909-1.c.s b/test/torture-s/920909-1.c.s index 39a620510..df523dfcf 100644 --- a/test/torture-s/920909-1.c.s +++ b/test/torture-s/920909-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, -1026 i32.add $push10=, $0, $pop0 tee_local $push9=, $0=, $pop10 @@ -57,5 +57,5 @@ main: # @main .size .Lswitch.table, 24 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920922-1.c.s b/test/torture-s/920922-1.c.s index f9dd47c2f..cec74727d 100644 --- a/test/torture-s/920922-1.c.s +++ b/test/torture-s/920922-1.c.s @@ -36,5 +36,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/920929-1.c.s b/test/torture-s/920929-1.c.s index 674f8b66e..2c6f5a72b 100644 --- a/test/torture-s/920929-1.c.s +++ b/test/torture-s/920929-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921006-1.c.s b/test/torture-s/921006-1.c.s index 8bec9560b..2fd32b45b 100644 --- a/test/torture-s/921006-1.c.s +++ b/test/torture-s/921006-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921007-1.c.s b/test/torture-s/921007-1.c.s index 7d7db512f..3bbbb0d53 100644 --- a/test/torture-s/921007-1.c.s +++ b/test/torture-s/921007-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921013-1.c.s b/test/torture-s/921013-1.c.s index ced9cd6f3..10dc4d161 100644 --- a/test/torture-s/921013-1.c.s +++ b/test/torture-s/921013-1.c.s @@ -8,13 +8,13 @@ f: # @f .param i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.eqz $push9=, $3 br_if 0, $pop9 # 0: down to label0 # BB#1: # %while.body.preheader .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: f32.load $push1=, 0($1) f32.load $push0=, 0($2) f32.eq $push2=, $pop1, $pop0 @@ -53,5 +53,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921016-1.c.s b/test/torture-s/921016-1.c.s index ed64092a0..71ccb6db4 100644 --- a/test/torture-s/921016-1.c.s +++ b/test/torture-s/921016-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921019-1.c.s b/test/torture-s/921019-1.c.s index 9616bb0b9..fd5da0611 100644 --- a/test/torture-s/921019-1.c.s +++ b/test/torture-s/921019-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push4=, 0 i32.load $push0=, foo($pop4) i32.load8_u $push1=, 0($pop0) @@ -42,6 +42,6 @@ foo: .size foo, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/921019-2.c.s b/test/torture-s/921019-2.c.s index 26b800718..3adfd78a2 100644 --- a/test/torture-s/921019-2.c.s +++ b/test/torture-s/921019-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921029-1.c.s b/test/torture-s/921029-1.c.s index e806c4bd0..ed6542f5f 100644 --- a/test/torture-s/921029-1.c.s +++ b/test/torture-s/921029-1.c.s @@ -80,5 +80,5 @@ back: .size back, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921104-1.c.s b/test/torture-s/921104-1.c.s index 639b560d9..93098208a 100644 --- a/test/torture-s/921104-1.c.s +++ b/test/torture-s/921104-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921110-1.c.s b/test/torture-s/921110-1.c.s index e845d189c..9b994ae1b 100644 --- a/test/torture-s/921110-1.c.s +++ b/test/torture-s/921110-1.c.s @@ -24,6 +24,6 @@ f: .size f, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, i32 .functype exit, void, i32 diff --git a/test/torture-s/921112-1.c.s b/test/torture-s/921112-1.c.s index 87003f8ee..f10e785ef 100644 --- a/test/torture-s/921112-1.c.s +++ b/test/torture-s/921112-1.c.s @@ -29,7 +29,7 @@ main: # @main i32.const $push7=, 0 i64.const $push6=, 8589934593 i64.store v($pop7), $pop6 - block + block i32.const $push5=, 0 br_if 0, $pop5 # 0: down to label0 # BB#1: # %entry @@ -68,6 +68,6 @@ v: .size v, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/921113-1.c.s b/test/torture-s/921113-1.c.s index 0fe6c46fb..3de7ce123 100644 --- a/test/torture-s/921113-1.c.s +++ b/test/torture-s/921113-1.c.s @@ -24,7 +24,7 @@ f1: # @f1 .result i32 .local i32 # BB#0: # %entry - block + block f32.const $push2=, 0x0p0 f32.ne $push0=, $0, $pop2 br_if 0, $pop0 # 0: down to label0 @@ -51,7 +51,7 @@ f2: # @f2 .result i32 .local i32 # BB#0: # %entry - block + block f32.const $push2=, 0x1p0 f32.ne $push0=, $0, $pop2 br_if 0, $pop0 # 0: down to label1 @@ -78,7 +78,7 @@ gitter: # @gitter .result i32 .local f32, f64, f64 # BB#0: # %entry - block + block f32.load $push1=, 0($4) f32.const $push23=, 0x0p0 f32.ne $push2=, $pop1, $pop23 @@ -103,7 +103,7 @@ gitter: # @gitter # BB#4: # %f2.exit i32.const $push10=, 0 i32.store 0($3), $pop10 - block + block f32.load $push28=, 0($1) tee_local $push27=, $6=, $pop28 f32.const $push11=, 0x0p0 @@ -189,6 +189,6 @@ limit: .size limit, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/921117-1.c.s b/test/torture-s/921117-1.c.s index 56610af83..a8557c34b 100644 --- a/test/torture-s/921117-1.c.s +++ b/test/torture-s/921117-1.c.s @@ -10,7 +10,7 @@ check: # @check .local i32 # BB#0: # %entry i32.const $1=, 1 - block + block i32.load $push0=, 12($0) i32.const $push1=, 99 i32.ne $push2=, $pop0, $pop1 @@ -52,7 +52,7 @@ main: # @main i32.const $push8=, 0 i32.load $push4=, .L.str($pop8):p2align=0 i32.store cell($pop9), $pop4 - block + block i32.const $push6=, cell i32.const $push5=, .L.str i32.call $push7=, strcmp@FUNCTION, $pop6, $pop5 @@ -85,7 +85,7 @@ cell: .size cell, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/921123-1.c.s b/test/torture-s/921123-1.c.s index f9b93c35e..7a4a2e76d 100644 --- a/test/torture-s/921123-1.c.s +++ b/test/torture-s/921123-1.c.s @@ -35,5 +35,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921123-2.c.s b/test/torture-s/921123-2.c.s index 73e5caca6..ee3f4102f 100644 --- a/test/torture-s/921123-2.c.s +++ b/test/torture-s/921123-2.c.s @@ -66,5 +66,5 @@ x: .size x, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921124-1.c.s b/test/torture-s/921124-1.c.s index e8b907e8a..5eec66d72 100644 --- a/test/torture-s/921124-1.c.s +++ b/test/torture-s/921124-1.c.s @@ -22,7 +22,7 @@ g: # @g .param i32, i32, f64, f64, i32, i32 .result i32 # BB#0: # %entry - block + block f64.const $push0=, 0x1p0 f64.ne $push1=, $2, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -63,6 +63,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/921202-1.c.s b/test/torture-s/921202-1.c.s index 694e047d8..2c5122d70 100644 --- a/test/torture-s/921202-1.c.s +++ b/test/torture-s/921202-1.c.s @@ -98,5 +98,5 @@ exxit: # @exxit .size exxit, .Lfunc_end6-exxit - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921202-2.c.s b/test/torture-s/921202-2.c.s index d25efaaba..85c0ca157 100644 --- a/test/torture-s/921202-2.c.s +++ b/test/torture-s/921202-2.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921204-1.c.s b/test/torture-s/921204-1.c.s index 86a7ea913..761e45266 100644 --- a/test/torture-s/921204-1.c.s +++ b/test/torture-s/921204-1.c.s @@ -37,5 +37,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921207-1.c.s b/test/torture-s/921207-1.c.s index 55a71d8fa..4db4708db 100644 --- a/test/torture-s/921207-1.c.s +++ b/test/torture-s/921207-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921208-1.c.s b/test/torture-s/921208-1.c.s index c6e3a099c..3a7ee405c 100644 --- a/test/torture-s/921208-1.c.s +++ b/test/torture-s/921208-1.c.s @@ -43,5 +43,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921208-2.c.s b/test/torture-s/921208-2.c.s index 0e4f34629..ae125e9df 100644 --- a/test/torture-s/921208-2.c.s +++ b/test/torture-s/921208-2.c.s @@ -43,5 +43,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921218-1.c.s b/test/torture-s/921218-1.c.s index 7e3d7e703..659e5d332 100644 --- a/test/torture-s/921218-1.c.s +++ b/test/torture-s/921218-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/921218-2.c.s b/test/torture-s/921218-2.c.s index 433ffa881..8feea1d3b 100644 --- a/test/torture-s/921218-2.c.s +++ b/test/torture-s/921218-2.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930106-1.c.s b/test/torture-s/930106-1.c.s index b5ea28a83..9330c828a 100644 --- a/test/torture-s/930106-1.c.s +++ b/test/torture-s/930106-1.c.s @@ -41,5 +41,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930111-1.c.s b/test/torture-s/930111-1.c.s index 717f251d2..02315d174 100644 --- a/test/torture-s/930111-1.c.s +++ b/test/torture-s/930111-1.c.s @@ -23,8 +23,8 @@ wwrite: # @wwrite .result i32 .local i32 # BB#0: # %entry - block - block + block + block i64.const $push1=, -3 i64.add $push5=, $0, $pop1 tee_local $push4=, $0=, $pop5 @@ -48,5 +48,5 @@ wwrite: # @wwrite .size wwrite, .Lfunc_end1-wwrite - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930123-1.c.s b/test/torture-s/930123-1.c.s index 99830a993..91ebf6b5d 100644 --- a/test/torture-s/930123-1.c.s +++ b/test/torture-s/930123-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930126-1.c.s b/test/torture-s/930126-1.c.s index a4e869e8f..0ece47210 100644 --- a/test/torture-s/930126-1.c.s +++ b/test/torture-s/930126-1.c.s @@ -36,7 +36,7 @@ main: # @main i32.const $push9=, 0 i64.const $push2=, 4010947596 i64.store32 main.i($pop9), $pop2 - block + block i32.const $push8=, 0 i64.load $push3=, main.i($pop8) i64.const $push4=, 1099511627775 @@ -64,6 +64,6 @@ main.i: .size main.i, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930208-1.c.s b/test/torture-s/930208-1.c.s index 0bec136a0..9745390e6 100644 --- a/test/torture-s/930208-1.c.s +++ b/test/torture-s/930208-1.c.s @@ -43,5 +43,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930406-1.c.s b/test/torture-s/930406-1.c.s index 1f9c87c34..52c13e107 100644 --- a/test/torture-s/930406-1.c.s +++ b/test/torture-s/930406-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930408-1.c.s b/test/torture-s/930408-1.c.s index 20c0555fc..42649be15 100644 --- a/test/torture-s/930408-1.c.s +++ b/test/torture-s/930408-1.c.s @@ -21,7 +21,7 @@ f: # @f .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push1=, s($pop0) i32.eqz $push2=, $pop1 @@ -64,6 +64,6 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930429-1.c.s b/test/torture-s/930429-1.c.s index 1058743c7..c50b254a9 100644 --- a/test/torture-s/930429-1.c.s +++ b/test/torture-s/930429-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930429-2.c.s b/test/torture-s/930429-2.c.s index 7d71fac4e..4e2fd0060 100644 --- a/test/torture-s/930429-2.c.s +++ b/test/torture-s/930429-2.c.s @@ -32,5 +32,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930513-1.c.s b/test/torture-s/930513-1.c.s index fb74df4f4..306f6a058 100644 --- a/test/torture-s/930513-1.c.s +++ b/test/torture-s/930513-1.c.s @@ -51,7 +51,7 @@ main: # @main i32.const $push3=, buf i32.const $push2=, .L.str i32.call $drop=, sprintf@FUNCTION, $pop3, $pop2, $0 - block + block i32.const $push14=, 0 i32.load8_u $push4=, buf($pop14) i32.const $push5=, 53 @@ -90,7 +90,7 @@ buf: .size .L.str, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype sprintf, i32, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930513-2.c.s b/test/torture-s/930513-2.c.s index 4ccb1bd13..45797ac26 100644 --- a/test/torture-s/930513-2.c.s +++ b/test/torture-s/930513-2.c.s @@ -23,7 +23,7 @@ eq: # @eq .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push4=, 0 i32.load $push0=, eq.i($pop4) i32.ne $push1=, $pop0, $0 @@ -49,7 +49,7 @@ eq: # @eq main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load $push0=, eq.i($pop2) br_if 0, $pop0 # 0: down to label1 @@ -76,6 +76,6 @@ eq.i: .size eq.i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930518-1.c.s b/test/torture-s/930518-1.c.s index 26baec1b3..a28feeecb 100644 --- a/test/torture-s/930518-1.c.s +++ b/test/torture-s/930518-1.c.s @@ -9,7 +9,7 @@ f: # @f .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push5=, 0 i32.load $push4=, bar($pop5) tee_local $push3=, $1=, $pop4 @@ -20,7 +20,7 @@ f: # @f i32.const $2=, 2 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.sub $push11=, $2, $1 tee_local $push10=, $2=, $pop11 i32.store 0($0), $pop10 @@ -59,7 +59,7 @@ main: # @main i32.store __stack_pointer($pop17), $pop22 i64.const $push0=, 0 i64.store 8($3):p2align=2, $pop0 - block + block i32.const $push1=, 0 i32.load $push21=, bar($pop1) tee_local $push20=, $0=, $pop21 @@ -73,7 +73,7 @@ main: # @main copy_local $2=, $pop19 .LBB1_2: # %while.body.i # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.sub $push27=, $1, $0 tee_local $push26=, $1=, $pop27 i32.store 0($2), $pop26 @@ -121,6 +121,6 @@ bar: .size bar, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930526-1.c.s b/test/torture-s/930526-1.c.s index 37bb36edd..a681c746a 100644 --- a/test/torture-s/930526-1.c.s +++ b/test/torture-s/930526-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930527-1.c.s b/test/torture-s/930527-1.c.s index 619122e0e..c2774cf37 100644 --- a/test/torture-s/930527-1.c.s +++ b/test/torture-s/930527-1.c.s @@ -32,5 +32,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930529-1.c.s b/test/torture-s/930529-1.c.s index 3a87933eb..8973d2e86 100644 --- a/test/torture-s/930529-1.c.s +++ b/test/torture-s/930529-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930603-1.c.s b/test/torture-s/930603-1.c.s index 8d042a48e..96ac810ae 100644 --- a/test/torture-s/930603-1.c.s +++ b/test/torture-s/930603-1.c.s @@ -77,5 +77,5 @@ f: # @f .size f, .Lfunc_end4-f - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930603-2.c.s b/test/torture-s/930603-2.c.s index 1a646d165..ed4549c3d 100644 --- a/test/torture-s/930603-2.c.s +++ b/test/torture-s/930603-2.c.s @@ -33,7 +33,7 @@ main: # @main i32.const $push7=, 0 i32.const $push6=, 1 i32.store w($pop7), $pop6 - block + block i32.const $push5=, 0 i32.load $push2=, w+4($pop5) i32.const $push4=, 0 @@ -62,6 +62,6 @@ w: .size w, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930603-3.c.s b/test/torture-s/930603-3.c.s index f215064e4..101a06e28 100644 --- a/test/torture-s/930603-3.c.s +++ b/test/torture-s/930603-3.c.s @@ -10,8 +10,8 @@ f: # @f .local i32 # BB#0: # %entry i32.const $2=, 1 - block - block + block + block i32.const $push0=, 100 i32.eq $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -51,6 +51,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930608-1.c.s b/test/torture-s/930608-1.c.s index 0d0f3037b..99f313943 100644 --- a/test/torture-s/930608-1.c.s +++ b/test/torture-s/930608-1.c.s @@ -39,5 +39,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930614-1.c.s b/test/torture-s/930614-1.c.s index 0f85af6ea..0f792a745 100644 --- a/test/torture-s/930614-1.c.s +++ b/test/torture-s/930614-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930614-2.c.s b/test/torture-s/930614-2.c.s index c41e3fc19..d9ae57133 100644 --- a/test/torture-s/930614-2.c.s +++ b/test/torture-s/930614-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930621-1.c.s b/test/torture-s/930621-1.c.s index dc87193fc..69e661614 100644 --- a/test/torture-s/930621-1.c.s +++ b/test/torture-s/930621-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930622-1.c.s b/test/torture-s/930622-1.c.s index 2feaff26a..81a04265a 100644 --- a/test/torture-s/930622-1.c.s +++ b/test/torture-s/930622-1.c.s @@ -80,5 +80,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930622-2.c.s b/test/torture-s/930622-2.c.s index 9946c9579..def845cf7 100644 --- a/test/torture-s/930622-2.c.s +++ b/test/torture-s/930622-2.c.s @@ -62,5 +62,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930628-1.c.s b/test/torture-s/930628-1.c.s index 515c4a1ad..ae103d372 100644 --- a/test/torture-s/930628-1.c.s +++ b/test/torture-s/930628-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.eq $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -33,9 +33,9 @@ main: # @main i32.const $1=, 0 .LBB1_1: # %for.cond4.preheader # =>This Inner Loop Header: Depth=1 - block - loop # label2: - block + block + loop # label2: + block i32.eqz $push25=, $0 br_if 0, $pop25 # 0: down to label3 # BB#2: # %for.cond15.preheader @@ -59,8 +59,8 @@ main: # @main i32.const $1=, 1 .LBB1_5: # %for.cond4.preheader.1 # =>This Inner Loop Header: Depth=1 - loop # label4: - block + loop # label4: + block i32.eqz $push27=, $0 br_if 0, $pop27 # 0: down to label5 # BB#6: # %for.cond15.preheader.1 @@ -84,8 +84,8 @@ main: # @main i32.const $0=, 0 .LBB1_9: # %for.cond4.preheader.2 # =>This Inner Loop Header: Depth=1 - loop # label6: - block + loop # label6: + block i32.eqz $push29=, $0 br_if 0, $pop29 # 0: down to label7 # BB#10: # %for.cond15.preheader.2 @@ -109,8 +109,8 @@ main: # @main i32.const $0=, 0 .LBB1_13: # %for.cond4.preheader.3 # =>This Inner Loop Header: Depth=1 - loop # label8: - block + loop # label8: + block i32.eqz $push31=, $0 br_if 0, $pop31 # 0: down to label9 # BB#14: # %for.cond15.preheader.3 @@ -142,6 +142,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930630-1.c.s b/test/torture-s/930630-1.c.s index df0ffcc50..0500c3787 100644 --- a/test/torture-s/930630-1.c.s +++ b/test/torture-s/930630-1.c.s @@ -22,7 +22,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 7 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,6 +37,6 @@ f: # @f .size f, .Lfunc_end1-f - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/930702-1.c.s b/test/torture-s/930702-1.c.s index f65faf73a..be56038df 100644 --- a/test/torture-s/930702-1.c.s +++ b/test/torture-s/930702-1.c.s @@ -8,7 +8,7 @@ fp: # @fp .param f64, i32 .result i32 # BB#0: # %entry - block + block f64.const $push0=, 0x1.08p5 f64.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -41,6 +41,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930713-1.c.s b/test/torture-s/930713-1.c.s index 7daf5859c..b06f87a5e 100644 --- a/test/torture-s/930713-1.c.s +++ b/test/torture-s/930713-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930718-1.c.s b/test/torture-s/930718-1.c.s index 3fad1e148..e80d6dcf0 100644 --- a/test/torture-s/930718-1.c.s +++ b/test/torture-s/930718-1.c.s @@ -27,6 +27,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930719-1.c.s b/test/torture-s/930719-1.c.s index 127150223..5f34b8074 100644 --- a/test/torture-s/930719-1.c.s +++ b/test/torture-s/930719-1.c.s @@ -8,9 +8,9 @@ f: # @f .param i32, i32, i32 .result i32 # BB#0: # %entry - block - block - block + block + block + block br_if 0, $0 # 0: down to label2 # BB#1: # %while.cond.preheader i32.const $push0=, 1 @@ -26,7 +26,7 @@ f: # @f .LBB0_4: # %while.cond # =>This Inner Loop Header: Depth=1 end_block # label1: - loop # label3: + loop # label3: br 0 # 0: up to label3 .LBB0_5: # %if.end2 end_loop @@ -52,5 +52,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930725-1.c.s b/test/torture-s/930725-1.c.s index 2d2c6b401..104f8e712 100644 --- a/test/torture-s/930725-1.c.s +++ b/test/torture-s/930725-1.c.s @@ -69,5 +69,5 @@ v: .size .L.str.1, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930818-1.c.s b/test/torture-s/930818-1.c.s index 99e0de32f..aebcccdab 100644 --- a/test/torture-s/930818-1.c.s +++ b/test/torture-s/930818-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930916-1.c.s b/test/torture-s/930916-1.c.s index 71981e301..5a4cd2806 100644 --- a/test/torture-s/930916-1.c.s +++ b/test/torture-s/930916-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.ge_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,6 +37,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930921-1.c.s b/test/torture-s/930921-1.c.s index a70fb70c8..29c2548ea 100644 --- a/test/torture-s/930921-1.c.s +++ b/test/torture-s/930921-1.c.s @@ -32,8 +32,8 @@ main: # @main i64.const $2=, 0 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i64.const $push7=, 33 i64.shr_u $push1=, $0, $pop7 i32.wrap/i64 $push2=, $pop1 @@ -67,6 +67,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930929-1.c.s b/test/torture-s/930929-1.c.s index 7acfa2331..6250d9a29 100644 --- a/test/torture-s/930929-1.c.s +++ b/test/torture-s/930929-1.c.s @@ -77,5 +77,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/930930-1.c.s b/test/torture-s/930930-1.c.s index ea3137238..e10d1c78b 100644 --- a/test/torture-s/930930-1.c.s +++ b/test/torture-s/930930-1.c.s @@ -9,16 +9,16 @@ f: # @f .result i32 .local i32, i32 # BB#0: # %entry - block - block + block + block i32.lt_u $push0=, $3, $4 br_if 0, $pop0 # 0: down to label1 # BB#1: # %if.end.preheader copy_local $6=, $0 .LBB0_2: # %if.end # =>This Inner Loop Header: Depth=1 - loop # label2: - block + loop # label2: + block i32.load $push6=, 0($3) tee_local $push5=, $5=, $pop6 i32.ge_u $push1=, $pop5, $2 @@ -116,6 +116,6 @@ wm_SPB: .size wm_SPB, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/930930-2.c.s b/test/torture-s/930930-2.c.s index c6c5e0b77..4c2c14b6a 100644 --- a/test/torture-s/930930-2.c.s +++ b/test/torture-s/930930-2.c.s @@ -53,7 +53,7 @@ main: # @main i32.store __stack_pointer($pop6), $pop7 i64.const $push0=, 4621819117588971520 i64.store 8($0), $pop0 - block + block i32.load $push1=, 8($0) br_if 0, $pop1 # 0: down to label0 # BB#1: # %if.end @@ -69,6 +69,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-1.c.s b/test/torture-s/931004-1.c.s index 42c56e749..bad870888 100644 --- a/test/torture-s/931004-1.c.s +++ b/test/torture-s/931004-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 10 i32.ne $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -49,6 +49,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-10.c.s b/test/torture-s/931004-10.c.s index 77a864c6d..3c282fa87 100644 --- a/test/torture-s/931004-10.c.s +++ b/test/torture-s/931004-10.c.s @@ -20,9 +20,9 @@ f: # @f i32.const $push22=, 4 i32.add $push1=, $1, $pop22 i32.store 12($4), $pop1 - block - block - block + block + block + block i32.const $push21=, 1 i32.lt_s $push2=, $0, $pop21 br_if 0, $pop2 # 0: down to label2 @@ -30,7 +30,7 @@ f: # @f i32.const $2=, 10 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.load8_s $push3=, 0($1) i32.ne $push4=, $2, $pop3 br_if 3, $pop4 # 3: down to label0 @@ -134,6 +134,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-11.c.s b/test/torture-s/931004-11.c.s index 2d6e8c5d5..dcc66aad1 100644 --- a/test/torture-s/931004-11.c.s +++ b/test/torture-s/931004-11.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load8_u $push0=, 0($1) i32.const $push1=, 10 i32.ne $push2=, $pop0, $pop1 @@ -141,6 +141,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-12.c.s b/test/torture-s/931004-12.c.s index 4ac838cf0..38488d5f9 100644 --- a/test/torture-s/931004-12.c.s +++ b/test/torture-s/931004-12.c.s @@ -20,9 +20,9 @@ f: # @f i32.const $push28=, 4 i32.add $push1=, $1, $pop28 i32.store 12($3), $pop1 - block - block - block + block + block + block i32.const $push27=, 1 i32.lt_s $push2=, $0, $pop27 br_if 0, $pop2 # 0: down to label2 @@ -32,7 +32,7 @@ f: # @f i32.const $2=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push32=, 10 i32.add $push4=, $2, $pop32 i32.const $push31=, -8 @@ -175,6 +175,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-13.c.s b/test/torture-s/931004-13.c.s index 9727ec156..788ee2f59 100644 --- a/test/torture-s/931004-13.c.s +++ b/test/torture-s/931004-13.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load8_u $push0=, 0($1) i32.const $push1=, 10 i32.ne $push2=, $pop0, $pop1 @@ -149,6 +149,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-14.c.s b/test/torture-s/931004-14.c.s index b49a7e472..1734133fc 100644 --- a/test/torture-s/931004-14.c.s +++ b/test/torture-s/931004-14.c.s @@ -20,9 +20,9 @@ f: # @f i32.const $push32=, 4 i32.add $push2=, $1, $pop32 i32.store 12($3), $pop2 - block - block - block + block + block + block i32.const $push31=, 1 i32.lt_s $push3=, $0, $pop31 br_if 0, $pop3 # 0: down to label2 @@ -32,7 +32,7 @@ f: # @f i32.const $2=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push36=, 10 i32.add $push5=, $2, $pop36 i32.const $push35=, -8 @@ -177,6 +177,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-2.c.s b/test/torture-s/931004-2.c.s index c4007ad81..baf432a2f 100644 --- a/test/torture-s/931004-2.c.s +++ b/test/torture-s/931004-2.c.s @@ -21,9 +21,9 @@ f: # @f i32.add $push2=, $1, $pop18 i32.store 12($5), $pop2 i32.load $4=, 0($1) - block - block - block + block + block + block i32.const $push17=, 1 i32.lt_s $push3=, $0, $pop17 br_if 0, $pop3 # 0: down to label2 @@ -33,7 +33,7 @@ f: # @f i32.const $1=, 10 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.ne $push5=, $1, $4 br_if 2, $pop5 # 2: down to label1 # BB#3: # %for.cond @@ -105,6 +105,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-3.c.s b/test/torture-s/931004-3.c.s index 810a4c1e9..024815b04 100644 --- a/test/torture-s/931004-3.c.s +++ b/test/torture-s/931004-3.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push12=, 65535 i32.and $push0=, $1, $pop12 i32.const $push1=, 10 @@ -55,6 +55,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-4.c.s b/test/torture-s/931004-4.c.s index 4847d5659..f002da323 100644 --- a/test/torture-s/931004-4.c.s +++ b/test/torture-s/931004-4.c.s @@ -20,9 +20,9 @@ f: # @f i32.const $push18=, 4 i32.add $push1=, $1, $pop18 i32.store 12($4), $pop1 - block - block - block + block + block + block i32.const $push17=, 1 i32.lt_s $push2=, $0, $pop17 br_if 0, $pop2 # 0: down to label2 @@ -30,7 +30,7 @@ f: # @f i32.const $3=, 10 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.load16_s $push3=, 0($1) i32.ne $push4=, $3, $pop3 br_if 2, $pop4 # 2: down to label1 @@ -102,6 +102,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-5.c.s b/test/torture-s/931004-5.c.s index 5e4fa171f..aab17aaa8 100644 --- a/test/torture-s/931004-5.c.s +++ b/test/torture-s/931004-5.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load16_u $push0=, 0($1) i32.const $push1=, 10 i32.ne $push2=, $pop0, $pop1 @@ -97,6 +97,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-6.c.s b/test/torture-s/931004-6.c.s index bbd2c209d..cc11c64f5 100644 --- a/test/torture-s/931004-6.c.s +++ b/test/torture-s/931004-6.c.s @@ -20,9 +20,9 @@ f: # @f i32.const $push22=, 4 i32.add $push1=, $1, $pop22 i32.store 12($4), $pop1 - block - block - block + block + block + block i32.const $push21=, 1 i32.lt_s $push2=, $0, $pop21 br_if 0, $pop2 # 0: down to label2 @@ -30,7 +30,7 @@ f: # @f i32.const $2=, 10 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.load16_s $push3=, 0($1) i32.ne $push4=, $2, $pop3 br_if 3, $pop4 # 3: down to label0 @@ -132,6 +132,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-7.c.s b/test/torture-s/931004-7.c.s index a5435ad59..6df0c9fcc 100644 --- a/test/torture-s/931004-7.c.s +++ b/test/torture-s/931004-7.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push12=, 255 i32.and $push0=, $1, $pop12 i32.const $push1=, 10 @@ -55,6 +55,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-8.c.s b/test/torture-s/931004-8.c.s index f38383d7c..76318a9cd 100644 --- a/test/torture-s/931004-8.c.s +++ b/test/torture-s/931004-8.c.s @@ -20,9 +20,9 @@ f: # @f i32.const $push18=, 4 i32.add $push1=, $1, $pop18 i32.store 12($4), $pop1 - block - block - block + block + block + block i32.const $push17=, 1 i32.lt_s $push2=, $0, $pop17 br_if 0, $pop2 # 0: down to label2 @@ -30,7 +30,7 @@ f: # @f i32.const $3=, 10 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.load8_s $push3=, 0($1) i32.ne $push4=, $3, $pop3 br_if 2, $pop4 # 2: down to label1 @@ -102,6 +102,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931004-9.c.s b/test/torture-s/931004-9.c.s index d83ecefa2..9f80b9969 100644 --- a/test/torture-s/931004-9.c.s +++ b/test/torture-s/931004-9.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.load8_u $push0=, 0($1) i32.const $push1=, 10 i32.ne $push2=, $pop0, $pop1 @@ -99,6 +99,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/931005-1.c.s b/test/torture-s/931005-1.c.s index 9b0cdf975..2fcfa20f0 100644 --- a/test/torture-s/931005-1.c.s +++ b/test/torture-s/931005-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931009-1.c.s b/test/torture-s/931009-1.c.s index a1f379362..4854a5ccd 100644 --- a/test/torture-s/931009-1.c.s +++ b/test/torture-s/931009-1.c.s @@ -29,5 +29,5 @@ f: # @f .size f, .Lfunc_end1-f - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931012-1.c.s b/test/torture-s/931012-1.c.s index 1cccc7d3b..102529f79 100644 --- a/test/torture-s/931012-1.c.s +++ b/test/torture-s/931012-1.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931017-1.c.s b/test/torture-s/931017-1.c.s index 52484d540..9999acef5 100644 --- a/test/torture-s/931017-1.c.s +++ b/test/torture-s/931017-1.c.s @@ -35,7 +35,7 @@ h2: # @h2 .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, v i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -88,6 +88,6 @@ v: .size v, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/931018-1.c.s b/test/torture-s/931018-1.c.s index 3264a4db6..1b2e3e139 100644 --- a/test/torture-s/931018-1.c.s +++ b/test/torture-s/931018-1.c.s @@ -22,7 +22,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, -559038737 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -55,6 +55,6 @@ a: .size a, 16384 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/931031-1.c.s b/test/torture-s/931031-1.c.s index eefe79c6e..0211eb969 100644 --- a/test/torture-s/931031-1.c.s +++ b/test/torture-s/931031-1.c.s @@ -36,5 +36,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931102-1.c.s b/test/torture-s/931102-1.c.s index 3b6ed4033..5b25baf81 100644 --- a/test/torture-s/931102-1.c.s +++ b/test/torture-s/931102-1.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.const $push3=, 1 i32.and $push0=, $0, $pop3 br_if 0, $pop0 # 0: down to label0 @@ -18,7 +18,7 @@ f: # @f i32.const $1=, 0 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push9=, 1 i32.add $1=, $1, $pop9 i32.const $push8=, 24 @@ -54,5 +54,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931102-2.c.s b/test/torture-s/931102-2.c.s index 33c04c5e1..d8ed845f0 100644 --- a/test/torture-s/931102-2.c.s +++ b/test/torture-s/931102-2.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.const $push3=, 1 i32.and $push0=, $0, $pop3 br_if 0, $pop0 # 0: down to label0 @@ -18,7 +18,7 @@ f: # @f i32.const $1=, 0 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push9=, 1 i32.add $1=, $1, $pop9 i32.const $push8=, 16 @@ -54,5 +54,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931110-1.c.s b/test/torture-s/931110-1.c.s index 3b389845c..3768ec9ac 100644 --- a/test/torture-s/931110-1.c.s +++ b/test/torture-s/931110-1.c.s @@ -84,5 +84,5 @@ x: .size x, 24 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931110-2.c.s b/test/torture-s/931110-2.c.s index 4f71327a7..786655655 100644 --- a/test/torture-s/931110-2.c.s +++ b/test/torture-s/931110-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931208-1.c.s b/test/torture-s/931208-1.c.s index 28888971f..b4cb8d517 100644 --- a/test/torture-s/931208-1.c.s +++ b/test/torture-s/931208-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/931228-1.c.s b/test/torture-s/931228-1.c.s index 7cbb7bbbf..874fce97a 100644 --- a/test/torture-s/931228-1.c.s +++ b/test/torture-s/931228-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/940115-1.c.s b/test/torture-s/940115-1.c.s index aba2b67b7..2a6f1b3a1 100644 --- a/test/torture-s/940115-1.c.s +++ b/test/torture-s/940115-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/940122-1.c.s b/test/torture-s/940122-1.c.s index b1fb42c52..476c4093a 100644 --- a/test/torture-s/940122-1.c.s +++ b/test/torture-s/940122-1.c.s @@ -9,7 +9,7 @@ g: # @g .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push3=, a($pop0) i32.const $push8=, 0 @@ -39,7 +39,7 @@ f: # @f .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push3=, a($pop0) i32.const $push8=, 0 @@ -95,6 +95,6 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/941014-1.c.s b/test/torture-s/941014-1.c.s index b3bf08244..714b8f2fb 100644 --- a/test/torture-s/941014-1.c.s +++ b/test/torture-s/941014-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/941014-2.c.s b/test/torture-s/941014-2.c.s index 1c8b9e04c..9873f37ba 100644 --- a/test/torture-s/941014-2.c.s +++ b/test/torture-s/941014-2.c.s @@ -27,7 +27,7 @@ f: # @f i32.sub $push17=, $pop8, $pop9 tee_local $push16=, $1=, $pop17 i32.store __stack_pointer($pop10), $pop16 - block + block i32.const $push0=, 4 i32.call $push15=, malloc@FUNCTION, $pop0 tee_local $push14=, $0=, $pop15 @@ -69,7 +69,7 @@ main: # @main i32.sub $push17=, $pop11, $pop12 tee_local $push16=, $1=, $pop17 i32.store __stack_pointer($pop13), $pop16 - block + block i32.const $push0=, 4 i32.call $push15=, malloc@FUNCTION, $pop0 tee_local $push14=, $0=, $pop15 @@ -86,7 +86,7 @@ main: # @main end_block # label1: i32.const $push6=, 256 i32.store16 2($0), $pop6 - block + block i32.load16_u $push7=, 2($0) i32.const $push18=, 256 i32.ne $push8=, $pop7, $pop18 @@ -110,7 +110,7 @@ main: # @main .size .L.str, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype printf, i32, i32 .functype abort, void diff --git a/test/torture-s/941015-1.c.s b/test/torture-s/941015-1.c.s index c7f8dd9c8..20f3e427b 100644 --- a/test/torture-s/941015-1.c.s +++ b/test/torture-s/941015-1.c.s @@ -51,5 +51,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/941021-1.c.s b/test/torture-s/941021-1.c.s index 00aa72393..d3b795c7f 100644 --- a/test/torture-s/941021-1.c.s +++ b/test/torture-s/941021-1.c.s @@ -44,5 +44,5 @@ glob_dbl: .size glob_dbl, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/941025-1.c.s b/test/torture-s/941025-1.c.s index 547ee78e7..760136848 100644 --- a/test/torture-s/941025-1.c.s +++ b/test/torture-s/941025-1.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/941031-1.c.s b/test/torture-s/941031-1.c.s index 808ebc9ee..72a28716d 100644 --- a/test/torture-s/941031-1.c.s +++ b/test/torture-s/941031-1.c.s @@ -34,5 +34,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/941101-1.c.s b/test/torture-s/941101-1.c.s index d58e44742..b8b58c0d0 100644 --- a/test/torture-s/941101-1.c.s +++ b/test/torture-s/941101-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/941110-1.c.s b/test/torture-s/941110-1.c.s index 911643b32..f715d7f11 100644 --- a/test/torture-s/941110-1.c.s +++ b/test/torture-s/941110-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/941202-1.c.s b/test/torture-s/941202-1.c.s index 284f8db3a..6e5377787 100644 --- a/test/torture-s/941202-1.c.s +++ b/test/torture-s/941202-1.c.s @@ -8,7 +8,7 @@ g: # @g .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 3 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,6 +37,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/950221-1.c.s b/test/torture-s/950221-1.c.s index 22ddbf035..fac7f8512 100644 --- a/test/torture-s/950221-1.c.s +++ b/test/torture-s/950221-1.c.s @@ -23,7 +23,7 @@ g2: # @g2 .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, -559038737 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -47,7 +47,7 @@ f: # @f .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push4=, 0 i32.load $push1=, parsefile($pop4) i32.load $push3=, 0($pop1) @@ -126,6 +126,6 @@ filler: .size filler, 522240 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/950322-1.c.s b/test/torture-s/950322-1.c.s index 3bdbdbbcf..dd859af46 100644 --- a/test/torture-s/950322-1.c.s +++ b/test/torture-s/950322-1.c.s @@ -41,5 +41,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950426-1.c.s b/test/torture-s/950426-1.c.s index 30978df52..3d3dae3cf 100644 --- a/test/torture-s/950426-1.c.s +++ b/test/torture-s/950426-1.c.s @@ -89,5 +89,5 @@ i: .size .L.str.1, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950426-2.c.s b/test/torture-s/950426-2.c.s index 61152a629..a49f7bb58 100644 --- a/test/torture-s/950426-2.c.s +++ b/test/torture-s/950426-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950503-1.c.s b/test/torture-s/950503-1.c.s index 8960c639f..9b3970cee 100644 --- a/test/torture-s/950503-1.c.s +++ b/test/torture-s/950503-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950511-1.c.s b/test/torture-s/950511-1.c.s index 7a771551a..7f4b3d3e6 100644 --- a/test/torture-s/950511-1.c.s +++ b/test/torture-s/950511-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950512-1.c.s b/test/torture-s/950512-1.c.s index e36b22682..a50a1a1a7 100644 --- a/test/torture-s/950512-1.c.s +++ b/test/torture-s/950512-1.c.s @@ -47,5 +47,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950605-1.c.s b/test/torture-s/950605-1.c.s index 609beabd3..50a4ee1ea 100644 --- a/test/torture-s/950605-1.c.s +++ b/test/torture-s/950605-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 255 i32.and $push1=, $0, $pop0 i32.const $push3=, 255 @@ -39,6 +39,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/950607-1.c.s b/test/torture-s/950607-1.c.s index 46978189d..107014ea8 100644 --- a/test/torture-s/950607-1.c.s +++ b/test/torture-s/950607-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950607-2.c.s b/test/torture-s/950607-2.c.s index 9b139d43d..aabee1c51 100644 --- a/test/torture-s/950607-2.c.s +++ b/test/torture-s/950607-2.c.s @@ -58,5 +58,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950612-1.c.s b/test/torture-s/950612-1.c.s index df37e5f87..628f15bd4 100644 --- a/test/torture-s/950612-1.c.s +++ b/test/torture-s/950612-1.c.s @@ -91,5 +91,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950621-1.c.s b/test/torture-s/950621-1.c.s index 519026275..2550ea62b 100644 --- a/test/torture-s/950621-1.c.s +++ b/test/torture-s/950621-1.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.eqz $push5=, $0 br_if 0, $pop5 # 0: down to label0 # BB#1: # %land.lhs.true @@ -45,5 +45,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950628-1.c.s b/test/torture-s/950628-1.c.s index deefea9ca..8293c044f 100644 --- a/test/torture-s/950628-1.c.s +++ b/test/torture-s/950628-1.c.s @@ -51,5 +51,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950704-1.c.s b/test/torture-s/950704-1.c.s index 39393061f..a74795ff8 100644 --- a/test/torture-s/950704-1.c.s +++ b/test/torture-s/950704-1.c.s @@ -13,9 +13,9 @@ f: # @f i32.const $push11=, 0 i32.store errflag($pop0), $pop11 i64.add $2=, $1, $0 - block - block - block + block + block + block i64.const $push10=, 0 i64.lt_s $push1=, $0, $pop10 br_if 0, $pop1 # 0: down to label2 @@ -78,5 +78,5 @@ errflag: .size errflag, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950706-1.c.s b/test/torture-s/950706-1.c.s index ec554b129..6e99c90ca 100644 --- a/test/torture-s/950706-1.c.s +++ b/test/torture-s/950706-1.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950710-1.c.s b/test/torture-s/950710-1.c.s index 7e21ff61f..da1113d88 100644 --- a/test/torture-s/950710-1.c.s +++ b/test/torture-s/950710-1.c.s @@ -27,7 +27,7 @@ main: # @main i32.sub $push17=, $pop7, $pop8 tee_local $push16=, $0=, $pop17 i32.store __stack_pointer($pop9), $pop16 - block + block i32.const $push10=, 16 i32.add $push11=, $0, $pop10 i32.sub $push15=, $0, $pop11 @@ -53,6 +53,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/950714-1.c.s b/test/torture-s/950714-1.c.s index ebf4d93b5..b12e215cd 100644 --- a/test/torture-s/950714-1.c.s +++ b/test/torture-s/950714-1.c.s @@ -29,9 +29,9 @@ main: # @main i32.load $0=, array($pop13) .LBB0_1: # %for.cond1.preheader # =>This Inner Loop Header: Depth=1 - block - block - loop # label2: + block + block + loop # label2: i32.eq $push0=, $0, $9 br_if 1, $pop0 # 1: down to label1 # BB#2: # %for.cond1.preheader @@ -112,6 +112,6 @@ array: .size array, 40 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/950809-1.c.s b/test/torture-s/950809-1.c.s index 75e226dc7..d3cde5a84 100644 --- a/test/torture-s/950809-1.c.s +++ b/test/torture-s/950809-1.c.s @@ -47,7 +47,7 @@ main: # @main i32.const $push3=, 0 i32.const $push0=, 11 i32.store main.sc($pop3), $pop0 - block + block i32.const $push1=, 2 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -73,6 +73,6 @@ main.sc: .size main.sc, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/950906-1.c.s b/test/torture-s/950906-1.c.s index 7e40c192a..66c061294 100644 --- a/test/torture-s/950906-1.c.s +++ b/test/torture-s/950906-1.c.s @@ -45,5 +45,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/950915-1.c.s b/test/torture-s/950915-1.c.s index 5168dca16..a3c4c04d8 100644 --- a/test/torture-s/950915-1.c.s +++ b/test/torture-s/950915-1.c.s @@ -27,7 +27,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push9=, 0 i64.load32_s $push1=, b($pop9) i32.const $push8=, 0 @@ -70,6 +70,6 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/950929-1.c.s b/test/torture-s/950929-1.c.s index 3f4b26895..4bc8c3def 100644 --- a/test/torture-s/950929-1.c.s +++ b/test/torture-s/950929-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/951003-1.c.s b/test/torture-s/951003-1.c.s index e68bbfd51..9885720ca 100644 --- a/test/torture-s/951003-1.c.s +++ b/test/torture-s/951003-1.c.s @@ -42,5 +42,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/951115-1.c.s b/test/torture-s/951115-1.c.s index 33e934bad..c5fde084d 100644 --- a/test/torture-s/951115-1.c.s +++ b/test/torture-s/951115-1.c.s @@ -61,5 +61,5 @@ var: .size var, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/951204-1.c.s b/test/torture-s/951204-1.c.s index cf5083544..7ecfa9b35 100644 --- a/test/torture-s/951204-1.c.s +++ b/test/torture-s/951204-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960116-1.c.s b/test/torture-s/960116-1.c.s index 394c55f3d..53927013b 100644 --- a/test/torture-s/960116-1.c.s +++ b/test/torture-s/960116-1.c.s @@ -10,8 +10,8 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 1 - block - block + block + block i32.const $push2=, 1 i32.and $push0=, $0, $pop2 br_if 0, $pop0 # 0: down to label1 @@ -44,5 +44,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960117-1.c.s b/test/torture-s/960117-1.c.s index d0fc1b833..2c06c2418 100644 --- a/test/torture-s/960117-1.c.s +++ b/test/torture-s/960117-1.c.s @@ -71,5 +71,5 @@ id_space: .size id_space, 66 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960209-1.c.s b/test/torture-s/960209-1.c.s index 354607e49..59baf41ff 100644 --- a/test/torture-s/960209-1.c.s +++ b/test/torture-s/960209-1.c.s @@ -11,7 +11,7 @@ f: # @f i32.const $push0=, -1 i32.const $push7=, 0 i32.select $1=, $pop0, $pop7, $1 - block + block i32.const $push6=, 0 i32.load $push1=, yabba($pop6) br_if 0, $pop1 # 0: down to label0 @@ -37,7 +37,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load $push0=, yabba($pop2) br_if 0, $pop0 # 0: down to label1 @@ -81,5 +81,5 @@ a_ptr: .size a_ptr, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960215-1.c.s b/test/torture-s/960215-1.c.s index c20a30bba..3f582f6a7 100644 --- a/test/torture-s/960215-1.c.s +++ b/test/torture-s/960215-1.c.s @@ -259,7 +259,7 @@ main: # @main i32.const $push132=, 0 i64.load $push48=, 0($10) i64.store Y1($pop132), $pop48 - block + block i64.const $push131=, 0 i64.const $push49=, 4612108230892453888 i32.call $push50=, __eqtf2@FUNCTION, $0, $1, $pop131, $pop49 @@ -378,6 +378,6 @@ S: .size S, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960218-1.c.s b/test/torture-s/960218-1.c.s index 7f6833b15..1e79385ed 100644 --- a/test/torture-s/960218-1.c.s +++ b/test/torture-s/960218-1.c.s @@ -24,7 +24,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push3=, -1 i32.eq $push0=, $0, $pop3 br_if 0, $pop0 # 0: down to label0 @@ -68,5 +68,5 @@ glob: .size glob, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960219-1.c.s b/test/torture-s/960219-1.c.s index dcb84874c..61dd824aa 100644 --- a/test/torture-s/960219-1.c.s +++ b/test/torture-s/960219-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end return $0 @@ -35,6 +35,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960301-1.c.s b/test/torture-s/960301-1.c.s index 05e6ea6ce..2e13a7033 100644 --- a/test/torture-s/960301-1.c.s +++ b/test/torture-s/960301-1.c.s @@ -78,5 +78,5 @@ oldfoo: .size oldfoo, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960302-1.c.s b/test/torture-s/960302-1.c.s index 99afcc988..85c0ba345 100644 --- a/test/torture-s/960302-1.c.s +++ b/test/torture-s/960302-1.c.s @@ -32,7 +32,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push5=, 0 i32.load $push0=, a($pop5) i32.const $push1=, 2 @@ -62,6 +62,6 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960311-1.c.s b/test/torture-s/960311-1.c.s index 8559681bc..9e8d1c746 100644 --- a/test/torture-s/960311-1.c.s +++ b/test/torture-s/960311-1.c.s @@ -24,7 +24,7 @@ a1: # @a1 b: # @b .param i32 # BB#0: # %entry - block + block i32.const $push0=, 128 i32.and $push1=, $0, $pop0 i32.eqz $push21=, $pop1 @@ -38,7 +38,7 @@ b: # @b i32.store count($pop2), $pop5 .LBB1_2: # %if.end end_block # label0: - block + block i32.const $push6=, 64 i32.and $push7=, $0, $pop6 i32.eqz $push22=, $pop7 @@ -52,7 +52,7 @@ b: # @b i32.store count($pop8), $pop11 .LBB1_4: # %if.end7 end_block # label1: - block + block i32.const $push12=, 32 i32.and $push13=, $0, $pop12 i32.eqz $push23=, $pop13 @@ -98,5 +98,5 @@ count: .size count, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960311-2.c.s b/test/torture-s/960311-2.c.s index ee06cbec4..83fd752d7 100644 --- a/test/torture-s/960311-2.c.s +++ b/test/torture-s/960311-2.c.s @@ -24,7 +24,7 @@ a1: # @a1 b: # @b .param i32 # BB#0: # %entry - block + block i32.const $push0=, 32768 i32.and $push1=, $0, $pop0 i32.eqz $push21=, $pop1 @@ -38,7 +38,7 @@ b: # @b i32.store count($pop2), $pop5 .LBB1_2: # %if.end end_block # label0: - block + block i32.const $push6=, 16384 i32.and $push7=, $0, $pop6 i32.eqz $push22=, $pop7 @@ -52,7 +52,7 @@ b: # @b i32.store count($pop8), $pop11 .LBB1_4: # %if.end7 end_block # label1: - block + block i32.const $push12=, 8192 i32.and $push13=, $0, $pop12 i32.eqz $push23=, $pop13 @@ -98,5 +98,5 @@ count: .size count, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960311-3.c.s b/test/torture-s/960311-3.c.s index 8c04ffa4f..7c8720b90 100644 --- a/test/torture-s/960311-3.c.s +++ b/test/torture-s/960311-3.c.s @@ -24,7 +24,7 @@ a1: # @a1 b: # @b .param i32 # BB#0: # %entry - block + block i32.const $push0=, -1 i32.gt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,7 +37,7 @@ b: # @b i32.store count($pop2), $pop5 .LBB1_2: # %if.end end_block # label0: - block + block i32.const $push6=, 1073741824 i32.and $push7=, $0, $pop6 i32.eqz $push21=, $pop7 @@ -51,7 +51,7 @@ b: # @b i32.store count($pop8), $pop11 .LBB1_4: # %if.end4 end_block # label1: - block + block i32.const $push12=, 536870912 i32.and $push13=, $0, $pop12 i32.eqz $push22=, $pop13 @@ -97,5 +97,5 @@ count: .size count, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960312-1.c.s b/test/torture-s/960312-1.c.s index 7114127b0..b01bf133b 100644 --- a/test/torture-s/960312-1.c.s +++ b/test/torture-s/960312-1.c.s @@ -54,7 +54,7 @@ main: # @main i32.store main.sc($pop4), $pop0 i32.const $push3=, 0 i32.store main.sc+8($pop3), $2 - block + block i32.const $push1=, 2 i32.ne $push2=, $2, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -80,6 +80,6 @@ main.sc: .size main.sc, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960317-1.c.s b/test/torture-s/960317-1.c.s index 049b86ff7..7c348547e 100644 --- a/test/torture-s/960317-1.c.s +++ b/test/torture-s/960317-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push8=, 0 i32.const $push7=, -1 i32.shl $push6=, $pop7, $0 @@ -47,5 +47,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960321-1.c.s b/test/torture-s/960321-1.c.s index cfac99225..87c6a4d00 100644 --- a/test/torture-s/960321-1.c.s +++ b/test/torture-s/960321-1.c.s @@ -23,7 +23,7 @@ acc_a: # @acc_a main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load8_u $push0=, a($pop3) i32.const $push1=, 100 @@ -50,6 +50,6 @@ a: .size a, 10 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960326-1.c.s b/test/torture-s/960326-1.c.s index 55ba3ef84..4d6296902 100644 --- a/test/torture-s/960326-1.c.s +++ b/test/torture-s/960326-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, s+4($pop3) i32.const $push1=, 3 @@ -41,6 +41,6 @@ s: .size s, 24 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960327-1.c.s b/test/torture-s/960327-1.c.s index 918da9e6d..7a2c0b83d 100644 --- a/test/torture-s/960327-1.c.s +++ b/test/torture-s/960327-1.c.s @@ -45,7 +45,7 @@ f: # @f i32.add $2=, $3, $pop8 .LBB1_1: # %while.cond # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push31=, -2 i32.add $1=, $2, $pop31 i32.const $push30=, -1 @@ -60,7 +60,7 @@ f: # @f end_loop i32.const $push11=, 88 i32.store16 0($0):p2align=0, $pop11 - block + block i32.const $push12=, 12 i32.add $push13=, $3, $pop12 i32.load8_u $push14=, 0($pop13) @@ -103,6 +103,6 @@ main: # @main .size .Lf.s, 14 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960402-1.c.s b/test/torture-s/960402-1.c.s index 85aa1d21c..2a038c707 100644 --- a/test/torture-s/960402-1.c.s +++ b/test/torture-s/960402-1.c.s @@ -32,5 +32,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960405-1.c.s b/test/torture-s/960405-1.c.s index 5f6354c7f..b30ef2811 100644 --- a/test/torture-s/960405-1.c.s +++ b/test/torture-s/960405-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push8=, 0 i64.load $push3=, x($pop8) i32.const $push7=, 0 @@ -52,6 +52,6 @@ y: .size y, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960416-1.c.s b/test/torture-s/960416-1.c.s index b5ae1b01a..c8fb1b261 100644 --- a/test/torture-s/960416-1.c.s +++ b/test/torture-s/960416-1.c.s @@ -149,5 +149,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960419-1.c.s b/test/torture-s/960419-1.c.s index 2c64d8a1f..8d498413f 100644 --- a/test/torture-s/960419-1.c.s +++ b/test/torture-s/960419-1.c.s @@ -7,7 +7,7 @@ check: # @check .param i32 # BB#0: # %entry - block + block i32.eqz $push0=, $0 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -35,6 +35,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960419-2.c.s b/test/torture-s/960419-2.c.s index 51c5e76d9..c1bf31e40 100644 --- a/test/torture-s/960419-2.c.s +++ b/test/torture-s/960419-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960512-1.c.s b/test/torture-s/960512-1.c.s index 1ea65c9f2..df706b92b 100644 --- a/test/torture-s/960512-1.c.s +++ b/test/torture-s/960512-1.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960513-1.c.s b/test/torture-s/960513-1.c.s index 24931c773..3c6afc990 100644 --- a/test/torture-s/960513-1.c.s +++ b/test/torture-s/960513-1.c.s @@ -166,5 +166,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960521-1.c.s b/test/torture-s/960521-1.c.s index dfe3eda04..bb82006a2 100644 --- a/test/torture-s/960521-1.c.s +++ b/test/torture-s/960521-1.c.s @@ -8,7 +8,7 @@ foo: # @foo .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push8=, 0 i32.load $push0=, n($pop8) i32.const $push7=, 1 @@ -20,7 +20,7 @@ foo: # @foo i32.const $1=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push15=, -1 i32.store 0($0), $pop15 i32.const $push14=, 4 @@ -77,7 +77,7 @@ main: # @main i32.load $2=, n($pop6) .LBB1_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push23=, -1 i32.store 0($3), $pop23 i32.const $push22=, 4 @@ -93,7 +93,7 @@ main: # @main i32.const $push4=, 255 i32.const $push3=, 522236 i32.call $drop=, memset@FUNCTION, $1, $pop4, $pop3 - block + block br_if 0, $3 # 0: down to label3 # BB#3: # %if.end i32.const $push5=, 0 @@ -135,7 +135,7 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/960608-1.c.s b/test/torture-s/960608-1.c.s index 1463179c5..bf082aa8f 100644 --- a/test/torture-s/960608-1.c.s +++ b/test/torture-s/960608-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960801-1.c.s b/test/torture-s/960801-1.c.s index 9a6849301..33089a518 100644 --- a/test/torture-s/960801-1.c.s +++ b/test/torture-s/960801-1.c.s @@ -41,5 +41,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960802-1.c.s b/test/torture-s/960802-1.c.s index 92cca9b15..b13b23eb6 100644 --- a/test/torture-s/960802-1.c.s +++ b/test/torture-s/960802-1.c.s @@ -81,5 +81,5 @@ val: .size val, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960830-1.c.s b/test/torture-s/960830-1.c.s index 6e8e01433..58c28acef 100644 --- a/test/torture-s/960830-1.c.s +++ b/test/torture-s/960830-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/960909-1.c.s b/test/torture-s/960909-1.c.s index fd33dfe78..5cfcacccd 100644 --- a/test/torture-s/960909-1.c.s +++ b/test/torture-s/960909-1.c.s @@ -10,7 +10,7 @@ ffs: # @ffs .local i32, i32 # BB#0: # %entry i32.const $2=, 0 - block + block i32.eqz $push7=, $0 br_if 0, $pop7 # 0: down to label0 # BB#1: # %for.cond.preheader @@ -23,7 +23,7 @@ ffs: # @ffs i32.const $2=, 1 .LBB0_3: # %for.inc # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push6=, 1 i32.add $2=, $2, $pop6 i32.const $push5=, 1 @@ -49,7 +49,7 @@ f: # @f .param i32 .result i32 # BB#0: # %entry - block + block i32.eqz $push0=, $0 br_if 0, $pop0 # 0: down to label2 # BB#1: # %if.end @@ -77,6 +77,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/961004-1.c.s b/test/torture-s/961004-1.c.s index 9bf2102c7..6c6532a50 100644 --- a/test/torture-s/961004-1.c.s +++ b/test/torture-s/961004-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load $push0=, k($pop2) br_if 0, $pop0 # 0: down to label0 @@ -34,5 +34,5 @@ k: .size k, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961017-1.c.s b/test/torture-s/961017-1.c.s index ceb4d377c..d838f112f 100644 --- a/test/torture-s/961017-1.c.s +++ b/test/torture-s/961017-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961017-2.c.s b/test/torture-s/961017-2.c.s index 4d550906b..e738d79ba 100644 --- a/test/torture-s/961017-2.c.s +++ b/test/torture-s/961017-2.c.s @@ -11,7 +11,7 @@ main: # @main i32.const $0=, 0 .LBB0_1: # %do.cond # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push3=, 16384 i32.add $push2=, $0, $pop3 tee_local $push1=, $0=, $pop2 @@ -26,5 +26,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961026-1.c.s b/test/torture-s/961026-1.c.s index f595fa75d..4e71ce5b7 100644 --- a/test/torture-s/961026-1.c.s +++ b/test/torture-s/961026-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961112-1.c.s b/test/torture-s/961112-1.c.s index bd7dcb5b8..f0d4581b8 100644 --- a/test/torture-s/961112-1.c.s +++ b/test/torture-s/961112-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961122-1.c.s b/test/torture-s/961122-1.c.s index 50eb7bada..c0baab0b0 100644 --- a/test/torture-s/961122-1.c.s +++ b/test/torture-s/961122-1.c.s @@ -71,5 +71,5 @@ acc: .size acc, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961122-2.c.s b/test/torture-s/961122-2.c.s index b4ffa9f3b..ddd5a9897 100644 --- a/test/torture-s/961122-2.c.s +++ b/test/torture-s/961122-2.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961125-1.c.s b/test/torture-s/961125-1.c.s index fe92ea27e..65cc03920 100644 --- a/test/torture-s/961125-1.c.s +++ b/test/torture-s/961125-1.c.s @@ -13,13 +13,13 @@ main: # @main .LBB0_1: # %land.rhs.i # =>This Loop Header: Depth=1 # Child Loop BB0_4 Depth 2 - block - loop # label1: + block + loop # label1: i32.eqz $push20=, $1 br_if 1, $pop20 # 1: down to label0 # BB#2: # %while.cond2.preheader.i # in Loop: Header=BB0_1 Depth=1 - block + block i32.const $push12=, .L.str+3 i32.ge_u $push0=, $0, $pop12 br_if 0, $pop0 # 0: down to label2 @@ -29,7 +29,7 @@ main: # @main .LBB0_4: # %land.rhs4.i # Parent Loop BB0_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label3: + loop # label3: i32.const $push14=, 1 i32.add $0=, $2, $pop14 i32.load8_u $push1=, 0($2) @@ -54,7 +54,7 @@ main: # @main .LBB0_7: # %begfield.exit end_loop end_block # label0: - block + block i32.const $push5=, 1 i32.add $push19=, $0, $pop5 tee_local $push18=, $2=, $pop19 @@ -83,6 +83,6 @@ main: # @main .size .L.str, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/961206-1.c.s b/test/torture-s/961206-1.c.s index a213d00c2..317bc6c8e 100644 --- a/test/torture-s/961206-1.c.s +++ b/test/torture-s/961206-1.c.s @@ -75,5 +75,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961213-1.c.s b/test/torture-s/961213-1.c.s index 98d63114b..c39e39723 100644 --- a/test/torture-s/961213-1.c.s +++ b/test/torture-s/961213-1.c.s @@ -12,7 +12,7 @@ g: # @g i64.const $5=, 0 i64.const $push5=, 0 i64.store 0($0), $pop5 - block + block i32.const $push1=, 1 i32.lt_s $push2=, $1, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -21,7 +21,7 @@ g: # @g copy_local $3=, $1 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i64.load32_u $push4=, 0($2) i64.mul $push3=, $5, $4 i64.add $5=, $pop4, $pop3 @@ -58,5 +58,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/961223-1.c.s b/test/torture-s/961223-1.c.s index 56722a5ac..a5a56fd70 100644 --- a/test/torture-s/961223-1.c.s +++ b/test/torture-s/961223-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/970214-1.c.s b/test/torture-s/970214-1.c.s index 5c708c4b4..410bb74cb 100644 --- a/test/torture-s/970214-1.c.s +++ b/test/torture-s/970214-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/970214-2.c.s b/test/torture-s/970214-2.c.s index 98cfa4395..3a02a84e7 100644 --- a/test/torture-s/970214-2.c.s +++ b/test/torture-s/970214-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/970217-1.c.s b/test/torture-s/970217-1.c.s index cc32a1b6f..132041bf2 100644 --- a/test/torture-s/970217-1.c.s +++ b/test/torture-s/970217-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/970923-1.c.s b/test/torture-s/970923-1.c.s index 0fbe31562..134c4e710 100644 --- a/test/torture-s/970923-1.c.s +++ b/test/torture-s/970923-1.c.s @@ -43,5 +43,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980205.c.s b/test/torture-s/980205.c.s index 82d880905..e1c560758 100644 --- a/test/torture-s/980205.c.s +++ b/test/torture-s/980205.c.s @@ -24,7 +24,7 @@ fdouble: # @fdouble i32.const $push4=, 8 i32.add $push5=, $pop17, $pop4 i32.store 12($2), $pop5 - block + block f64.const $push6=, 0x1p0 f64.ne $push7=, $0, $pop6 br_if 0, $pop7 # 0: down to label0 @@ -74,6 +74,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980223.c.s b/test/torture-s/980223.c.s index ca17cb31d..a65473dc1 100644 --- a/test/torture-s/980223.c.s +++ b/test/torture-s/980223.c.s @@ -28,9 +28,9 @@ foo: # @foo i32.sub $push18=, $pop6, $pop7 tee_local $push17=, $4=, $pop18 i32.store __stack_pointer($pop8), $pop17 - block - block - block + block + block + block i32.load $push16=, 0($1) tee_local $push15=, $1=, $pop16 i32.load8_u $push0=, 4($pop15) @@ -89,8 +89,8 @@ main: # @main i32.const $push16=, 0 i64.load $push0=, .Lmain.y($pop16) i64.store 8($1), $pop0 - block - block + block + block i32.const $push15=, 0 i32.load8_u $push1=, cons2+4($pop15) i32.const $push14=, 64 @@ -167,5 +167,5 @@ cons2: .size .Lmain.y, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/980424-1.c.s b/test/torture-s/980424-1.c.s index ff7552fce..931ab61c0 100644 --- a/test/torture-s/980424-1.c.s +++ b/test/torture-s/980424-1.c.s @@ -7,7 +7,7 @@ f: # @f .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -27,7 +27,7 @@ f: # @f .type g,@function g: # @g # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push1=, i($pop0) i32.const $push2=, 63 @@ -90,6 +90,6 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980505-1.c.s b/test/torture-s/980505-1.c.s index 375b3c0fb..53b94d420 100644 --- a/test/torture-s/980505-1.c.s +++ b/test/torture-s/980505-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980505-2.c.s b/test/torture-s/980505-2.c.s index 693c081a9..456ff431a 100644 --- a/test/torture-s/980505-2.c.s +++ b/test/torture-s/980505-2.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980506-1.c.s b/test/torture-s/980506-1.c.s index d33348689..2d8fcad02 100644 --- a/test/torture-s/980506-1.c.s +++ b/test/torture-s/980506-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980506-2.c.s b/test/torture-s/980506-2.c.s index 211d364a9..f51ede4e9 100644 --- a/test/torture-s/980506-2.c.s +++ b/test/torture-s/980506-2.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980506-3.c.s b/test/torture-s/980506-3.c.s index 7b012c219..30b064615 100644 --- a/test/torture-s/980506-3.c.s +++ b/test/torture-s/980506-3.c.s @@ -29,5 +29,5 @@ lookup_table: .size lookup_table, 257 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980526-2.c.s b/test/torture-s/980526-2.c.s index 202057e80..be4d116b6 100644 --- a/test/torture-s/980526-2.c.s +++ b/test/torture-s/980526-2.c.s @@ -7,7 +7,7 @@ do_mknod: # @do_mknod .param i32, i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 360710264 i32.ne $push1=, $2, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -124,6 +124,6 @@ main: # @main .size .L.str, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/980526-3.c.s b/test/torture-s/980526-3.c.s index 1b230af41..37303a099 100644 --- a/test/torture-s/980526-3.c.s +++ b/test/torture-s/980526-3.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980602-1.c.s b/test/torture-s/980602-1.c.s index 6b7d68c17..2fe93d3ec 100644 --- a/test/torture-s/980602-1.c.s +++ b/test/torture-s/980602-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980602-2.c.s b/test/torture-s/980602-2.c.s index 7ff5a0070..43799229a 100644 --- a/test/torture-s/980602-2.c.s +++ b/test/torture-s/980602-2.c.s @@ -20,7 +20,7 @@ main: # @main i32.and $push1=, $0, $pop0 i32.or $push6=, $pop5, $pop1 i32.store t($pop12), $pop6 - block + block i32.const $push8=, 1073741823 i32.and $push7=, $0, $pop8 br_if 0, $pop7 # 0: down to label0 @@ -46,6 +46,6 @@ t: .size t, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/980604-1.c.s b/test/torture-s/980604-1.c.s index 3d80ae0f9..8383b99c1 100644 --- a/test/torture-s/980604-1.c.s +++ b/test/torture-s/980604-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push4=, c i32.const $push3=, d i32.const $push8=, 0 @@ -67,6 +67,6 @@ d: .size d, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980605-1.c.s b/test/torture-s/980605-1.c.s index 479d1f6ad..f0abfd448 100644 --- a/test/torture-s/980605-1.c.s +++ b/test/torture-s/980605-1.c.s @@ -78,7 +78,7 @@ f: # @f i32.const $push6=, buf i32.const $push5=, .L.str i32.call $drop=, sprintf@FUNCTION, $pop6, $pop5, $1 - block + block i32.const $push7=, 227 i32.ne $push8=, $0, $pop7 br_if 0, $pop8 # 0: down to label0 @@ -135,7 +135,7 @@ buf: .size .L.str, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype sprintf, i32, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980608-1.c.s b/test/torture-s/980608-1.c.s index 6ca2d9043..1f7c82485 100644 --- a/test/torture-s/980608-1.c.s +++ b/test/torture-s/980608-1.c.s @@ -32,7 +32,7 @@ debug: # @debug i32.add $push33=, $1, $pop0 tee_local $push32=, $2=, $pop33 i32.store 12($4), $pop32 - block + block i32.load $push1=, 0($1) i32.const $push2=, 101 i32.ne $push3=, $pop1, $pop2 @@ -127,6 +127,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980612-1.c.s b/test/torture-s/980612-1.c.s index 57cd16686..27020257f 100644 --- a/test/torture-s/980612-1.c.s +++ b/test/torture-s/980612-1.c.s @@ -36,7 +36,7 @@ main: # @main i32.const $push7=, 0 i32.const $push0=, 255 i32.store8 f+1($pop7), $pop0 - block + block i32.const $push6=, 0 i32.load8_u $push1=, f($pop6) i32.const $push2=, 111 @@ -66,6 +66,6 @@ f: .size f, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980617-1.c.s b/test/torture-s/980617-1.c.s index 8a4fe6a9f..0c71a612b 100644 --- a/test/torture-s/980617-1.c.s +++ b/test/torture-s/980617-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.load8_s $push0=, 0($0) i32.const $push1=, -17 i32.add $push2=, $pop0, $pop1 @@ -52,6 +52,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980618-1.c.s b/test/torture-s/980618-1.c.s index c10df4d47..af77c3960 100644 --- a/test/torture-s/980618-1.c.s +++ b/test/torture-s/980618-1.c.s @@ -21,7 +21,7 @@ main: # @main func: # @func .param i32, i32 # BB#0: # %entry - block + block i32.ne $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.then @@ -35,6 +35,6 @@ func: # @func .size func, .Lfunc_end1-func - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/980701-1.c.s b/test/torture-s/980701-1.c.s index b28084f7d..3c5c736f6 100644 --- a/test/torture-s/980701-1.c.s +++ b/test/torture-s/980701-1.c.s @@ -38,7 +38,7 @@ dn_skipname: # @dn_skipname main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, a br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.then @@ -62,6 +62,6 @@ a: .size a, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980707-1.c.s b/test/torture-s/980707-1.c.s index 94c6cadce..7ba10f0c1 100644 --- a/test/torture-s/980707-1.c.s +++ b/test/torture-s/980707-1.c.s @@ -13,8 +13,8 @@ buildargv: # @buildargv .LBB0_1: # %while.cond1 # =>This Loop Header: Depth=1 # Child Loop BB0_5 Depth 2 - loop # label0: - block + loop # label0: + block i32.load8_u $push12=, 0($0) tee_local $push11=, $1=, $pop12 i32.const $push10=, 32 @@ -28,7 +28,7 @@ buildargv: # @buildargv .LBB0_3: # %while.cond1 # in Loop: Header=BB0_1 Depth=1 end_block # label1: - block + block i32.eqz $push23=, $1 br_if 0, $pop23 # 0: down to label2 # BB#4: # %if.end @@ -43,14 +43,14 @@ buildargv: # @buildargv .LBB0_5: # %while.cond7 # Parent Loop BB0_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label3: + loop # label3: i32.load8_u $push18=, 0($0) tee_local $push17=, $1=, $pop18 i32.eqz $push24=, $pop17 br_if 1, $pop24 # 1: down to label2 # BB#6: # %while.cond7 # in Loop: Header=BB0_5 Depth=2 - block + block i32.const $push19=, 32 i32.eq $push3=, $1, $pop19 br_if 0, $pop3 # 0: down to label4 @@ -109,8 +109,8 @@ main: # @main .LBB1_1: # %while.cond1.i # =>This Loop Header: Depth=1 # Child Loop BB1_5 Depth 2 - loop # label5: - block + loop # label5: + block i32.load8_u $push28=, 0($0) tee_local $push27=, $1=, $pop28 i32.const $push26=, 32 @@ -124,7 +124,7 @@ main: # @main .LBB1_3: # %while.cond1.i # in Loop: Header=BB1_1 Depth=1 end_block # label6: - block + block i32.eqz $push43=, $1 br_if 0, $pop43 # 0: down to label7 # BB#4: # %if.end.i @@ -139,8 +139,8 @@ main: # @main .LBB1_5: # %while.cond7.i # Parent Loop BB1_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label9: + block + loop # label9: i32.load8_u $push35=, 0($0) tee_local $push34=, $1=, $pop35 i32.const $push33=, 32 @@ -173,7 +173,7 @@ main: # @main i32.add $push9=, $pop7, $pop8 i32.const $push39=, 0 i32.store 0($pop9), $pop39 - block + block i32.const $push38=, 0 i32.load $push10=, buildargv.arglist($pop38) i32.const $push11=, .L.str.1 @@ -225,7 +225,7 @@ buildargv.arglist: .size .L.str.2, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/980709-1.c.s b/test/torture-s/980709-1.c.s index cb37b6dc9..398540e09 100644 --- a/test/torture-s/980709-1.c.s +++ b/test/torture-s/980709-1.c.s @@ -17,7 +17,7 @@ main: # @main i32.store __stack_pointer($pop15), $pop21 i64.const $push0=, 4629700416936869888 i64.store 8($2), $pop0 - block + block f64.load $push2=, 8($2) f64.const $push1=, 0x1.5555555555555p-2 f64.call $push20=, pow@FUNCTION, $pop2, $pop1 @@ -52,6 +52,6 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/980716-1.c.s b/test/torture-s/980716-1.c.s index 6435f3fb8..6ff0b24ae 100644 --- a/test/torture-s/980716-1.c.s +++ b/test/torture-s/980716-1.c.s @@ -17,7 +17,7 @@ stub: # @stub copy_local $4=, $1 .LBB0_1: # %while.cond # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push7=, 4 i32.add $push6=, $4, $pop7 tee_local $push5=, $2=, $pop6 @@ -30,7 +30,7 @@ stub: # @stub i32.store 12($5), $1 .LBB0_3: # %while.cond.1 # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push10=, 4 i32.add $push9=, $1, $pop10 tee_local $push8=, $4=, $pop9 @@ -93,5 +93,5 @@ main: # @main .size .L.str.2, 3 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/980929-1.c.s b/test/torture-s/980929-1.c.s index 1ebe09b1b..b8bb16b44 100644 --- a/test/torture-s/980929-1.c.s +++ b/test/torture-s/980929-1.c.s @@ -7,7 +7,7 @@ f: # @f .param i32 # BB#0: # %entry - block + block i32.const $push0=, 1000 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -36,6 +36,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/981001-1.c.s b/test/torture-s/981001-1.c.s index 94d608946..f671be0ec 100644 --- a/test/torture-s/981001-1.c.s +++ b/test/torture-s/981001-1.c.s @@ -9,8 +9,8 @@ sub: # @sub .result i32 .local i32 # BB#0: # %entry - block - block + block + block i32.const $push0=, 2 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -59,8 +59,8 @@ main: # @main # BB#0: # %entry i32.const $push7=, 0 i32.load $0=, flg($pop7) - block - block + block + block i32.const $push0=, 30 i32.call $push1=, sub@FUNCTION, $pop0 i32.const $push2=, 832040 @@ -98,6 +98,6 @@ flg: .size flg, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/981019-1.c.s b/test/torture-s/981019-1.c.s index 2660df973..a615ffeb2 100644 --- a/test/torture-s/981019-1.c.s +++ b/test/torture-s/981019-1.c.s @@ -8,8 +8,8 @@ ff: # @ff .param i32, i32, i32 .local i32 # BB#0: # %entry - block - block + block + block i32.eqz $push3=, $0 br_if 0, $pop3 # 0: down to label1 # BB#1: # %entry @@ -20,8 +20,8 @@ ff: # @ff i32.load $0=, f3.x($pop0) .LBB0_3: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.eqz $3=, $0 br_if 1, $0 # 1: down to label2 # BB#4: # %while.body @@ -107,7 +107,7 @@ main: # @main i32.load $1=, f3.x($pop0) .LBB4_1: # %while.cond.i # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: copy_local $push3=, $1 tee_local $push2=, $0=, $pop3 i32.eqz $1=, $pop2 @@ -131,5 +131,5 @@ f3.x: .size f3.x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/981130-1.c.s b/test/torture-s/981130-1.c.s index 46e4d2118..5e1f0178e 100644 --- a/test/torture-s/981130-1.c.s +++ b/test/torture-s/981130-1.c.s @@ -7,7 +7,7 @@ check: # @check .param i32, i32 # BB#0: # %entry - block + block i32.ne $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.then @@ -63,6 +63,6 @@ s1: .size s1, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/981206-1.c.s b/test/torture-s/981206-1.c.s index d6f565bf2..a4ad5b30d 100644 --- a/test/torture-s/981206-1.c.s +++ b/test/torture-s/981206-1.c.s @@ -52,5 +52,5 @@ y: .size y, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990106-1.c.s b/test/torture-s/990106-1.c.s index ac42b39fc..7173f4230 100644 --- a/test/torture-s/990106-1.c.s +++ b/test/torture-s/990106-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990106-2.c.s b/test/torture-s/990106-2.c.s index 1aca4e9eb..23ff7244c 100644 --- a/test/torture-s/990106-2.c.s +++ b/test/torture-s/990106-2.c.s @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990117-1.c.s b/test/torture-s/990117-1.c.s index 2d040003e..83e8f913b 100644 --- a/test/torture-s/990117-1.c.s +++ b/test/torture-s/990117-1.c.s @@ -34,4 +34,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/990127-1.c.s b/test/torture-s/990127-1.c.s index 74363ad1d..40ecd7cea 100644 --- a/test/torture-s/990127-1.c.s +++ b/test/torture-s/990127-1.c.s @@ -27,8 +27,8 @@ main: # @main i32.const $2=, 21 .LBB0_1: # %while.body.1 # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: copy_local $1=, $2 i32.const $push66=, 4 i32.lt_s $push3=, $0, $pop66 @@ -51,8 +51,8 @@ main: # @main copy_local $0=, $pop32 .LBB0_4: # %while.cond.2 # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.load $push73=, 0($0) tee_local $push72=, $2=, $pop73 i32.const $push71=, -1 @@ -80,8 +80,8 @@ main: # @main copy_local $1=, $pop34 .LBB0_7: # %while.cond.3 # =>This Inner Loop Header: Depth=1 - block - loop # label5: + block + loop # label5: i32.load $push79=, 0($1) tee_local $push78=, $0=, $pop79 i32.const $push77=, -1 @@ -109,8 +109,8 @@ main: # @main copy_local $1=, $pop36 .LBB0_10: # %while.cond.4 # =>This Inner Loop Header: Depth=1 - block - loop # label7: + block + loop # label7: i32.load $push85=, 0($1) tee_local $push84=, $0=, $pop85 i32.const $push83=, -1 @@ -138,8 +138,8 @@ main: # @main copy_local $1=, $pop38 .LBB0_13: # %while.cond.5 # =>This Inner Loop Header: Depth=1 - block - loop # label9: + block + loop # label9: i32.load $push91=, 0($1) tee_local $push90=, $0=, $pop91 i32.const $push89=, -1 @@ -167,8 +167,8 @@ main: # @main copy_local $1=, $pop40 .LBB0_16: # %while.cond.6 # =>This Inner Loop Header: Depth=1 - block - loop # label11: + block + loop # label11: i32.load $push97=, 0($1) tee_local $push96=, $0=, $pop97 i32.const $push95=, -1 @@ -196,8 +196,8 @@ main: # @main copy_local $1=, $pop42 .LBB0_19: # %while.cond.7 # =>This Inner Loop Header: Depth=1 - block - loop # label13: + block + loop # label13: i32.load $push103=, 0($1) tee_local $push102=, $0=, $pop103 i32.const $push101=, -1 @@ -225,8 +225,8 @@ main: # @main copy_local $1=, $pop44 .LBB0_22: # %while.cond.8 # =>This Inner Loop Header: Depth=1 - block - loop # label15: + block + loop # label15: i32.load $push109=, 0($1) tee_local $push108=, $0=, $pop109 i32.const $push107=, -1 @@ -254,8 +254,8 @@ main: # @main copy_local $1=, $pop46 .LBB0_25: # %while.cond.9 # =>This Inner Loop Header: Depth=1 - block - loop # label17: + block + loop # label17: i32.load $push115=, 0($1) tee_local $push114=, $0=, $pop115 i32.const $push113=, -1 @@ -276,7 +276,7 @@ main: # @main .LBB0_27: # %while.end.9 end_loop end_block # label16: - block + block i32.load $push22=, 8($3) i32.const $push21=, -5 i32.ne $push23=, $pop22, $pop21 @@ -298,6 +298,6 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990127-2.c.s b/test/torture-s/990127-2.c.s index bc0858ec0..8c23ec5a3 100644 --- a/test/torture-s/990127-2.c.s +++ b/test/torture-s/990127-2.c.s @@ -7,7 +7,7 @@ fpEq: # @fpEq .param f64, f64 # BB#0: # %entry - block + block f64.ne $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -27,7 +27,7 @@ fpEq: # @fpEq fpTest: # @fpTest .param f64, f64 # BB#0: # %entry - block + block f64.const $push0=, 0x1.9p6 f64.mul $push1=, $0, $pop0 f64.div $push2=, $pop1, $1 @@ -62,6 +62,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990128-1.c.s b/test/torture-s/990128-1.c.s index 0720f92a0..213434172 100644 --- a/test/torture-s/990128-1.c.s +++ b/test/torture-s/990128-1.c.s @@ -50,13 +50,13 @@ main: # @main .LBB0_1: # %for.inc.i.preheader.i # =>This Loop Header: Depth=1 # Child Loop BB0_2 Depth 2 - loop # label0: + loop # label0: copy_local $0=, $2 copy_local $2=, $1 .LBB0_2: # %for.inc.i.i # Parent Loop BB0_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label1: + loop # label1: i32.load $push29=, 0($2) tee_local $push28=, $2=, $pop29 br_if 0, $pop28 # 0: up to label1 @@ -75,7 +75,7 @@ main: # @main i32.add $push34=, $0, $pop11 tee_local $push33=, $2=, $pop34 i32.store count($pop35), $pop33 - block + block i32.const $push12=, 12 i32.ne $push13=, $2, $pop12 br_if 0, $pop13 # 0: down to label2 @@ -101,19 +101,19 @@ sub: # @sub # BB#0: # %entry i32.const $push3=, 0 i32.load $2=, count($pop3) - block + block i32.eqz $push12=, $0 br_if 0, $pop12 # 0: down to label3 # BB#1: # %for.inc.i.preheader.preheader .LBB1_2: # %for.inc.i.preheader # =>This Loop Header: Depth=1 # Child Loop BB1_3 Depth 2 - loop # label4: + loop # label4: copy_local $3=, $0 .LBB1_3: # %for.inc.i # Parent Loop BB1_2 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label5: + loop # label5: i32.load $push5=, 0($3) tee_local $push4=, $3=, $pop5 br_if 0, $pop4 # 0: up to label5 @@ -152,12 +152,12 @@ look: # @look .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.eqz $push9=, $0 br_if 0, $pop9 # 0: down to label6 .LBB2_1: # %for.inc # =>This Inner Loop Header: Depth=1 - loop # label7: + loop # label7: i32.load $push5=, 0($0) tee_local $push4=, $0=, $pop5 br_if 0, $pop4 # 0: up to label7 @@ -215,6 +215,6 @@ sss: .size sss, 40 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990130-1.c.s b/test/torture-s/990130-1.c.s index 9fdf7aae8..b63d3feec 100644 --- a/test/torture-s/990130-1.c.s +++ b/test/torture-s/990130-1.c.s @@ -21,7 +21,7 @@ main: # @main #NO_APP i32.const $push2=, 0 i32.store dummy($pop2), $0 - block + block br_if 0, $1 # 0: down to label0 # BB#1: # %if.end i32.const $push8=, 0 @@ -54,6 +54,6 @@ dummy: .size dummy, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990211-1.c.s b/test/torture-s/990211-1.c.s index c8a81d6ec..5fd828715 100644 --- a/test/torture-s/990211-1.c.s +++ b/test/torture-s/990211-1.c.s @@ -26,4 +26,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/990222-1.c.s b/test/torture-s/990222-1.c.s index dc56ff1ea..0d9191154 100644 --- a/test/torture-s/990222-1.c.s +++ b/test/torture-s/990222-1.c.s @@ -15,7 +15,7 @@ main: # @main i32.add $push24=, $pop0, $pop25 tee_local $push23=, $1=, $pop24 i32.store8 line+2($pop27), $pop23 - block + block i32.const $push22=, 24 i32.shl $push1=, $1, $pop22 i32.const $push21=, 24 @@ -28,7 +28,7 @@ main: # @main i32.const $1=, line+1 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push36=, 1 i32.add $push4=, $1, $pop36 i32.const $push35=, 48 @@ -53,7 +53,7 @@ main: # @main i32.load8_u $1=, line+2($pop9) .LBB0_4: # %while.end end_block # label0: - block + block i32.const $push37=, 0 i32.load8_u $push11=, line($pop37) i32.const $push12=, 50 @@ -93,5 +93,5 @@ line: .size line, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/990324-1.c.s b/test/torture-s/990324-1.c.s index 79d04e403..7d22b987c 100644 --- a/test/torture-s/990324-1.c.s +++ b/test/torture-s/990324-1.c.s @@ -7,7 +7,7 @@ f: # @f .param i32 # BB#0: # %entry - block + block i32.const $push0=, 24 i32.shl $push1=, $0, $pop0 i32.const $push3=, 0 @@ -40,6 +40,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990326-1.c.s b/test/torture-s/990326-1.c.s index 5d3eb7a19..52a5478f8 100644 --- a/test/torture-s/990326-1.c.s +++ b/test/torture-s/990326-1.c.s @@ -457,5 +457,5 @@ main: # @main .size main, .Lfunc_end34-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990404-1.c.s b/test/torture-s/990404-1.c.s index d98a64086..b56d9698e 100644 --- a/test/torture-s/990404-1.c.s +++ b/test/torture-s/990404-1.c.s @@ -12,8 +12,8 @@ main: # @main # implicit-def: %vreg122 .LBB0_1: # %for.cond # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.const $push83=, 0 i32.load $push82=, x+36($pop83) tee_local $push81=, $10=, $pop82 @@ -154,6 +154,6 @@ x: .size x, 40 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990513-1.c.s b/test/torture-s/990513-1.c.s index 4b27e91dc..9b7e5cc53 100644 --- a/test/torture-s/990513-1.c.s +++ b/test/torture-s/990513-1.c.s @@ -11,7 +11,7 @@ foo: # @foo i32.const $3=, 1024 .LBB0_1: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.add $push12=, $0, $3 tee_local $push11=, $2=, $pop12 i32.const $push10=, -8 @@ -58,7 +58,7 @@ main: # @main i32.call $0=, memset@FUNCTION, $1, $pop0, $pop14 .LBB1_1: # %while.body.i # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.add $push25=, $0, $2 tee_local $push24=, $1=, $pop25 i32.const $push23=, -8 @@ -75,7 +75,7 @@ main: # @main br_if 0, $pop17 # 0: up to label1 # BB#2: # %foo.exit end_loop - block + block i32.load $push4=, 0($0) i32.const $push3=, 6 i32.ne $push5=, $pop4, $pop3 @@ -96,5 +96,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/990524-1.c.s b/test/torture-s/990524-1.c.s index ac053bc0a..0f2e19f82 100644 --- a/test/torture-s/990524-1.c.s +++ b/test/torture-s/990524-1.c.s @@ -10,7 +10,7 @@ loop: # @loop # BB#0: # %entry .LBB0_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: copy_local $push22=, $1 tee_local $push21=, $2=, $pop22 i32.load8_u $push20=, 0($pop21) @@ -22,8 +22,8 @@ loop: # @loop i32.shl $push0=, $4, $pop17 i32.const $push16=, 24 i32.shr_s $3=, $pop0, $pop16 - block - block + block + block i32.const $push15=, 34 i32.eq $push1=, $4, $pop15 br_if 0, $pop1 # 0: down to label2 @@ -52,7 +52,7 @@ loop: # @loop br_if 0, $3 # 0: up to label0 # BB#5: # %loopDone2 end_loop - block + block i32.const $push5=, a i32.sub $push6=, $pop5, $0 i32.const $push9=, b @@ -105,6 +105,6 @@ b: .size b, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990525-1.c.s b/test/torture-s/990525-1.c.s index d29448ffa..e4696bd71 100644 --- a/test/torture-s/990525-1.c.s +++ b/test/torture-s/990525-1.c.s @@ -7,7 +7,7 @@ die: # @die .param i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -59,6 +59,6 @@ main: # @main .size .Lmain.s, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990525-2.c.s b/test/torture-s/990525-2.c.s index 7501972ae..200b3a0a6 100644 --- a/test/torture-s/990525-2.c.s +++ b/test/torture-s/990525-2.c.s @@ -45,5 +45,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990527-1.c.s b/test/torture-s/990527-1.c.s index 77f6db856..a1af3474c 100644 --- a/test/torture-s/990527-1.c.s +++ b/test/torture-s/990527-1.c.s @@ -51,7 +51,7 @@ main: # @main i32.const $push0=, 81 i32.add $push1=, $pop2, $pop0 i32.store sum($pop5), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end i32.const $push6=, 0 @@ -75,6 +75,6 @@ sum: .size sum, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990531-1.c.s b/test/torture-s/990531-1.c.s index 4ef20466f..f383b913f 100644 --- a/test/torture-s/990531-1.c.s +++ b/test/torture-s/990531-1.c.s @@ -41,5 +41,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990604-1.c.s b/test/torture-s/990604-1.c.s index 5b45d53bc..62c2a2098 100644 --- a/test/torture-s/990604-1.c.s +++ b/test/torture-s/990604-1.c.s @@ -6,7 +6,7 @@ .type f,@function f: # @f # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load $push0=, b($pop2) br_if 0, $pop0 # 0: down to label0 @@ -29,8 +29,8 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block - block + block + block i32.const $push6=, 0 i32.load $push5=, b($pop6) tee_local $push4=, $0=, $pop5 @@ -65,5 +65,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/990628-1.c.s b/test/torture-s/990628-1.c.s index fad59bf9d..6206372d1 100644 --- a/test/torture-s/990628-1.c.s +++ b/test/torture-s/990628-1.c.s @@ -77,11 +77,11 @@ load_data: # @load_data tee_local $push11=, $1=, $pop12 i32.select $push5=, $pop4, $pop14, $pop11 i32.store sqlca($pop15), $pop5 - block + block br_if 0, $1 # 0: down to label0 .LBB2_1: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push34=, 404 i32.call $drop=, memcpy@FUNCTION, $3, $0, $pop34 i32.const $push33=, 85 @@ -146,13 +146,13 @@ main: # @main tee_local $push14=, $3=, $pop15 i32.select $push5=, $pop4, $pop17, $pop14 i32.store sqlca($pop18), $pop5 - block + block br_if 0, $3 # 0: down to label2 # BB#1: # %while.body.lr.ph.i copy_local $3=, $0 .LBB3_2: # %while.body.i # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push37=, 404 i32.call $drop=, memcpy@FUNCTION, $3, $1, $pop37 i32.const $push36=, 85 @@ -176,7 +176,7 @@ main: # @main i32.store fetch.fetch_count($pop38), $pop9 .LBB3_4: # %load_data.exit end_block # label2: - block + block i32.load $push10=, 0($0) i32.const $push11=, 1431655765 i32.ne $push12=, $pop10, $pop11 @@ -228,7 +228,7 @@ data_ptr: .size data_ptr, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990804-1.c.s b/test/torture-s/990804-1.c.s index 92a0e7d77..190401cc8 100644 --- a/test/torture-s/990804-1.c.s +++ b/test/torture-s/990804-1.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990811-1.c.s b/test/torture-s/990811-1.c.s index 49b31adf7..274079ef4 100644 --- a/test/torture-s/990811-1.c.s +++ b/test/torture-s/990811-1.c.s @@ -8,9 +8,9 @@ foo: # @foo .param i32, i32 .result i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 2 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label2 @@ -54,6 +54,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/990826-0.c.s b/test/torture-s/990826-0.c.s index b029adaad..efc855dd4 100644 --- a/test/torture-s/990826-0.c.s +++ b/test/torture-s/990826-0.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/990827-1.c.s b/test/torture-s/990827-1.c.s index 79a5f2c29..865d3b8c6 100644 --- a/test/torture-s/990827-1.c.s +++ b/test/torture-s/990827-1.c.s @@ -37,5 +37,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990829-1.c.s b/test/torture-s/990829-1.c.s index 738dcd60b..bfebdd355 100644 --- a/test/torture-s/990829-1.c.s +++ b/test/torture-s/990829-1.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/990923-1.c.s b/test/torture-s/990923-1.c.s index 700d3c64a..435d8338d 100644 --- a/test/torture-s/990923-1.c.s +++ b/test/torture-s/990923-1.c.s @@ -36,5 +36,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991014-1.c.s b/test/torture-s/991014-1.c.s index 9b1e9fc0a..604026939 100644 --- a/test/torture-s/991014-1.c.s +++ b/test/torture-s/991014-1.c.s @@ -53,4 +53,4 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/991016-1.c.s b/test/torture-s/991016-1.c.s index 492b9dc90..b6f2d568c 100644 --- a/test/torture-s/991016-1.c.s +++ b/test/torture-s/991016-1.c.s @@ -9,9 +9,9 @@ doit: # @doit .result i32 .local i32, i64, i64 # BB#0: # %entry - block - block - block + block + block + block i32.eqz $push25=, $0 br_if 0, $pop25 # 0: down to label2 # BB#1: # %entry @@ -26,7 +26,7 @@ doit: # @doit i64.load $5=, 0($2) .LBB0_4: # %do.body11 # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: copy_local $push12=, $5 tee_local $push11=, $4=, $pop12 i64.const $push10=, 1 @@ -45,7 +45,7 @@ doit: # @doit i32.load $0=, 0($2) .LBB0_7: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: copy_local $push18=, $0 tee_local $push17=, $3=, $pop18 i32.const $push16=, 1 @@ -64,7 +64,7 @@ doit: # @doit i32.load $0=, 0($2) .LBB0_10: # %do.body2 # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: copy_local $push24=, $0 tee_local $push23=, $3=, $pop24 i32.const $push22=, 1 @@ -101,6 +101,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/991019-1.c.s b/test/torture-s/991019-1.c.s index b1403da25..e6a1ec13a 100644 --- a/test/torture-s/991019-1.c.s +++ b/test/torture-s/991019-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991023-1.c.s b/test/torture-s/991023-1.c.s index 44bb59943..d129004a5 100644 --- a/test/torture-s/991023-1.c.s +++ b/test/torture-s/991023-1.c.s @@ -43,5 +43,5 @@ blah: .size blah, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991030-1.c.s b/test/torture-s/991030-1.c.s index 0f82f014a..810550ec8 100644 --- a/test/torture-s/991030-1.c.s +++ b/test/torture-s/991030-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 f64.load $push0=, x($pop3) f64.const $push1=, 0x1.fp1 @@ -35,6 +35,6 @@ x: .size x, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/991112-1.c.s b/test/torture-s/991112-1.c.s index 34621c8c7..5be28af24 100644 --- a/test/torture-s/991112-1.c.s +++ b/test/torture-s/991112-1.c.s @@ -38,7 +38,7 @@ rl_character_len: # @rl_character_len main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 97 i32.call $push1=, isprint@FUNCTION, $pop0 i32.eqz $push5=, $pop1 @@ -59,6 +59,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype isprint, i32, i32 .functype abort, void diff --git a/test/torture-s/991118-1.c.s b/test/torture-s/991118-1.c.s index 066a89fe2..599c6c25e 100644 --- a/test/torture-s/991118-1.c.s +++ b/test/torture-s/991118-1.c.s @@ -88,7 +88,7 @@ main: # @main i64.xor $push42=, $pop43, $pop3 tee_local $push41=, $1=, $pop42 i64.store tmp2($pop46), $pop41 - block + block i64.const $push4=, -4096 i64.and $push5=, $3, $pop4 i64.const $push6=, -7687337405579571200 @@ -237,6 +237,6 @@ tmp4: .size tmp4, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/991201-1.c.s b/test/torture-s/991201-1.c.s index ffccaeacf..89b11a55f 100644 --- a/test/torture-s/991201-1.c.s +++ b/test/torture-s/991201-1.c.s @@ -16,7 +16,7 @@ reset_palette: # @reset_palette i32.const $2=, -64 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.load $push3=, 0($1) i32.add $push4=, $pop3, $0 i32.const $push25=, -2 @@ -59,7 +59,7 @@ reset_palette: # @reset_palette bar: # @bar .param i32 # BB#0: # %entry - block + block i32.const $push0=, 48 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -197,6 +197,6 @@ default_blu: .size default_blu, 64 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/991202-1.c.s b/test/torture-s/991202-1.c.s index 42294fbd8..8118b767b 100644 --- a/test/torture-s/991202-1.c.s +++ b/test/torture-s/991202-1.c.s @@ -39,5 +39,5 @@ y: .size y, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991202-2.c.s b/test/torture-s/991202-2.c.s index d53480691..4214dd08b 100644 --- a/test/torture-s/991202-2.c.s +++ b/test/torture-s/991202-2.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991202-3.c.s b/test/torture-s/991202-3.c.s index 603ff5017..852ab242b 100644 --- a/test/torture-s/991202-3.c.s +++ b/test/torture-s/991202-3.c.s @@ -62,5 +62,5 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991216-1.c.s b/test/torture-s/991216-1.c.s index 1140bb536..daf52b01d 100644 --- a/test/torture-s/991216-1.c.s +++ b/test/torture-s/991216-1.c.s @@ -7,7 +7,7 @@ test1: # @test1 .param i32, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -36,7 +36,7 @@ test1: # @test1 test2: # @test2 .param i32, i32, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -69,7 +69,7 @@ test2: # @test2 test3: # @test3 .param i32, i32, i32, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label2 @@ -106,7 +106,7 @@ test3: # @test3 test4: # @test4 .param i32, i32, i32, i32, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label3 @@ -147,7 +147,7 @@ test4: # @test4 test5: # @test5 .param i32, i32, i32, i32, i32, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label4 @@ -192,7 +192,7 @@ test5: # @test5 test6: # @test6 .param i32, i32, i32, i32, i32, i32, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label5 @@ -241,7 +241,7 @@ test6: # @test6 test7: # @test7 .param i32, i32, i32, i32, i32, i32, i32, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label6 @@ -294,7 +294,7 @@ test7: # @test7 test8: # @test8 .param i32, i32, i32, i32, i32, i32, i32, i32, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label7 @@ -359,6 +359,6 @@ main: # @main .size main, .Lfunc_end8-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/991216-2.c.s b/test/torture-s/991216-2.c.s index 40a161c20..926f4c4fb 100644 --- a/test/torture-s/991216-2.c.s +++ b/test/torture-s/991216-2.c.s @@ -16,9 +16,9 @@ test: # @test tee_local $push24=, $4=, $pop25 i32.store __stack_pointer($pop20), $pop24 i32.store 12($4), $1 - block - block - block + block + block + block i32.const $push0=, 2 i32.ge_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label2 @@ -30,7 +30,7 @@ test: # @test i32.const $2=, 1 .LBB0_3: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push31=, 4 i32.add $push30=, $1, $pop31 tee_local $push29=, $3=, $pop30 @@ -257,6 +257,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/991216-4.c.s b/test/torture-s/991216-4.c.s index 2037ab032..808870eb7 100644 --- a/test/torture-s/991216-4.c.s +++ b/test/torture-s/991216-4.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991221-1.c.s b/test/torture-s/991221-1.c.s index 093c7d580..31291c190 100644 --- a/test/torture-s/991221-1.c.s +++ b/test/torture-s/991221-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991227-1.c.s b/test/torture-s/991227-1.c.s index 2c11166cf..4357b34e6 100644 --- a/test/torture-s/991227-1.c.s +++ b/test/torture-s/991227-1.c.s @@ -44,5 +44,5 @@ main: # @main .size .L.str.1, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/991228-1.c.s b/test/torture-s/991228-1.c.s index 201b2def4..63311708c 100644 --- a/test/torture-s/991228-1.c.s +++ b/test/torture-s/991228-1.c.s @@ -45,7 +45,7 @@ main: # @main i32.sub $push22=, $pop12, $pop13 tee_local $push21=, $1=, $pop22 i32.store __stack_pointer($pop14), $pop21 - block + block i32.const $push20=, 0 i32.load $push0=, endianness_test($pop20) i32.const $push1=, 2 @@ -65,7 +65,7 @@ main: # @main end_block # label0: i64.const $push6=, -4625196817309499392 i64.store 8($1), $pop6 - block + block i32.const $push15=, 8 i32.add $push16=, $1, $pop15 i32.add $push7=, $pop16, $0 @@ -104,6 +104,6 @@ endianness_test: .size endianness_test, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/align-1.c.s b/test/torture-s/align-1.c.s index 4da813512..53533b6fb 100644 --- a/test/torture-s/align-1.c.s +++ b/test/torture-s/align-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/align-2.c.s b/test/torture-s/align-2.c.s index 924908496..7852bc431 100644 --- a/test/torture-s/align-2.c.s +++ b/test/torture-s/align-2.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push95=, 0 i32.load8_u $push0=, s_c_s($pop95) i32.const $push1=, 97 @@ -361,5 +361,5 @@ s_d_ld: .size s_d_ld, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/align-3.c.s b/test/torture-s/align-3.c.s index e09fa1ef9..47b8f857c 100644 --- a/test/torture-s/align-3.c.s +++ b/test/torture-s/align-3.c.s @@ -26,4 +26,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/alloca-1.c.s b/test/torture-s/alloca-1.c.s index be2f971ce..52c0e2366 100644 --- a/test/torture-s/alloca-1.c.s +++ b/test/torture-s/alloca-1.c.s @@ -34,7 +34,7 @@ main: # @main i32.sub $push11=, $pop4, $pop5 tee_local $push10=, $0=, $pop11 i32.store __stack_pointer($pop6), $pop10 - block + block i32.const $push0=, 15 i32.and $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -54,5 +54,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/anon-1.c.s b/test/torture-s/anon-1.c.s index 5f7f79b4c..4c6cc2087 100644 --- a/test/torture-s/anon-1.c.s +++ b/test/torture-s/anon-1.c.s @@ -27,4 +27,4 @@ foo: .size foo, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/arith-1.c.s b/test/torture-s/arith-1.c.s index de793259a..59d5baaaa 100644 --- a/test/torture-s/arith-1.c.s +++ b/test/torture-s/arith-1.c.s @@ -34,5 +34,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/arith-rand-ll.c.s b/test/torture-s/arith-rand-ll.c.s index f3b4ba9d7..aa4728677 100644 --- a/test/torture-s/arith-rand-ll.c.s +++ b/test/torture-s/arith-rand-ll.c.s @@ -38,8 +38,8 @@ random_bitstring: # @random_bitstring i64.const $3=, 0 .LBB1_1: # %for.cond # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i64.const $push20=, 1103515245 i64.mul $push0=, $2, $pop20 i64.const $push19=, 12345 @@ -60,7 +60,7 @@ random_bitstring: # @random_bitstring i64.const $push22=, 15 i64.and $push2=, $0, $pop22 i64.shl $3=, $3, $pop2 - block + block i64.const $push21=, 256 i64.and $push3=, $2, $pop21 i64.eqz $push4=, $pop3 @@ -105,18 +105,18 @@ main: # @main # =>This Loop Header: Depth=1 # Child Loop BB2_2 Depth 2 # Child Loop BB2_7 Depth 2 - block - block - block - block - loop # label7: + block + block + block + block + loop # label7: i64.const $9=, 0 i32.const $10=, 0 .LBB2_2: # %for.cond.i # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label9: + block + loop # label9: i64.const $push86=, 1103515245 i64.mul $push0=, $2, $pop86 i64.const $push85=, 12345 @@ -137,7 +137,7 @@ main: # @main i64.const $push88=, 15 i64.and $push2=, $11, $pop88 i64.shl $9=, $9, $pop2 - block + block i64.const $push87=, 256 i64.and $push3=, $2, $pop87 i64.eqz $push4=, $pop3 @@ -165,8 +165,8 @@ main: # @main .LBB2_7: # %for.cond.i452 # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label12: + block + loop # label12: i64.const $push101=, 1103515245 i64.mul $push9=, $2, $pop101 i64.const $push100=, 12345 @@ -187,7 +187,7 @@ main: # @main i64.const $push103=, 15 i64.and $push11=, $3, $pop103 i64.shl $11=, $11, $pop11 - block + block i64.const $push102=, 256 i64.and $push12=, $2, $pop102 i64.eqz $push13=, $pop12 @@ -210,12 +210,12 @@ main: # @main # in Loop: Header=BB2_1 Depth=1 end_loop end_block # label11: - block + block i64.eqz $push18=, $11 br_if 0, $pop18 # 0: down to label14 # BB#12: # %cleanup.cont # in Loop: Header=BB2_1 Depth=1 - block + block i64.const $push108=, 9223372036854775807 i64.and $push19=, $9, $pop108 i64.const $push107=, 0 @@ -251,7 +251,7 @@ main: # @main br_if 0, $pop188 # 0: down to label14 # BB#16: # %cleanup.cont65 # in Loop: Header=BB2_1 Depth=1 - block + block i32.wrap/i64 $push122=, $9 tee_local $push121=, $1=, $pop122 i32.const $push120=, 2147483647 @@ -281,7 +281,7 @@ main: # @main br_if 3, $pop34 # 3: down to label5 # BB#19: # %lor.lhs.false103 # in Loop: Header=BB2_1 Depth=1 - block + block i32.eqz $push189=, $4 br_if 0, $pop189 # 0: down to label17 # BB#20: # %lor.lhs.false103 @@ -445,6 +445,6 @@ simple_rand.seed: .size simple_rand.seed, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/arith-rand.c.s b/test/torture-s/arith-rand.c.s index 544c5c82e..c4e7de280 100644 --- a/test/torture-s/arith-rand.c.s +++ b/test/torture-s/arith-rand.c.s @@ -38,8 +38,8 @@ random_bitstring: # @random_bitstring i32.const $3=, 0 .LBB1_1: # %for.cond # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.const $push15=, 1103515245 i32.mul $push0=, $1, $pop15 i32.const $push14=, 12345 @@ -56,7 +56,7 @@ random_bitstring: # @random_bitstring # in Loop: Header=BB1_1 Depth=1 i32.add $3=, $0, $3 i32.shl $2=, $2, $0 - block + block i32.const $push16=, 256 i32.and $push2=, $1, $pop16 i32.eqz $push21=, $pop2 @@ -100,17 +100,17 @@ main: # @main # =>This Loop Header: Depth=1 # Child Loop BB2_2 Depth 2 # Child Loop BB2_7 Depth 2 - block - block - block - loop # label6: + block + block + block + loop # label6: i32.const $6=, 0 i32.const $7=, 0 .LBB2_2: # %for.cond.i # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label8: + block + loop # label8: i32.const $push66=, 1103515245 i32.mul $push0=, $2, $pop66 i32.const $push65=, 12345 @@ -127,7 +127,7 @@ main: # @main # in Loop: Header=BB2_2 Depth=2 i32.add $7=, $1, $7 i32.shl $6=, $6, $1 - block + block i32.const $push67=, 256 i32.and $push2=, $2, $pop67 i32.eqz $push147=, $pop2 @@ -154,8 +154,8 @@ main: # @main .LBB2_7: # %for.cond.i339 # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label11: + block + loop # label11: i32.const $push78=, 1103515245 i32.mul $push6=, $2, $pop78 i32.const $push77=, 12345 @@ -172,7 +172,7 @@ main: # @main # in Loop: Header=BB2_7 Depth=2 i32.add $8=, $1, $8 i32.shl $7=, $7, $1 - block + block i32.const $push79=, 256 i32.and $push8=, $2, $pop79 i32.eqz $push149=, $pop8 @@ -194,12 +194,12 @@ main: # @main # in Loop: Header=BB2_1 Depth=1 end_loop end_block # label10: - block + block i32.eqz $push150=, $7 br_if 0, $pop150 # 0: down to label13 # BB#12: # %cleanup.cont # in Loop: Header=BB2_1 Depth=1 - block + block i32.const $push83=, 2147483647 i32.and $push12=, $6, $pop83 br_if 0, $pop12 # 0: down to label14 @@ -373,6 +373,6 @@ simple_rand.seed: .size simple_rand.seed, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/ashldi-1.c.s b/test/torture-s/ashldi-1.c.s index cd489732b..fb634c40e 100644 --- a/test/torture-s/ashldi-1.c.s +++ b/test/torture-s/ashldi-1.c.s @@ -12,8 +12,8 @@ main: # @main i32.const $2=, .Lswitch.table .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i64.const $push6=, 81985529216486895 i64.shl $push0=, $pop6, $0 i64.load $push1=, 0($2) @@ -35,8 +35,8 @@ main: # @main i32.const $1=, .Lswitch.table .LBB0_4: # %constant_shift.exit # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.const $push12=, 1 i32.eqz $push18=, $pop12 br_if 1, $pop18 # 1: down to label2 @@ -138,6 +138,6 @@ main: # @main .size .Lswitch.table, 512 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/ashrdi-1.c.s b/test/torture-s/ashrdi-1.c.s index af7a42607..1be386609 100644 --- a/test/torture-s/ashrdi-1.c.s +++ b/test/torture-s/ashrdi-1.c.s @@ -12,9 +12,9 @@ main: # @main i32.const $2=, zext .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - block - loop # label2: + block + block + loop # label2: i64.const $push17=, 8526495107234113920 i64.shr_u $push0=, $pop17, $0 i64.load $push1=, 0($2) @@ -36,7 +36,7 @@ main: # @main i32.const $2=, sext .LBB0_4: # %for.body4 # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i64.const $push23=, -8152436031399644656 i64.shr_s $push4=, $pop23, $0 i64.load $push5=, 0($2) @@ -58,7 +58,7 @@ main: # @main i32.const $1=, zext .LBB0_7: # %for.body16 # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: i64.const $push29=, 8526495107234113920 i64.call $push8=, constant_shift@FUNCTION, $pop29, $2 i64.load $push9=, 0($1) @@ -80,8 +80,8 @@ main: # @main i32.const $1=, sext .LBB0_10: # %for.body28 # =>This Inner Loop Header: Depth=1 - block - loop # label6: + block + loop # label6: i64.const $push35=, -8152436031399644656 i64.call $push12=, constant_shift@FUNCTION, $pop35, $2 i64.load $push13=, 0($1) @@ -124,75 +124,75 @@ constant_shift: # @constant_shift .param i64, i32 .result i64 # BB#0: # %entry - block + block i32.const $push0=, 63 i32.gt_u $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label7 # BB#1: # %entry - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block br_table $1, 1, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 1 # 1: down to label70 # 0: down to label71 # 2: down to label69 @@ -723,6 +723,6 @@ sext: .size sext, 512 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/bcp-1.c.s b/test/torture-s/bcp-1.c.s index eacaa8088..b8824053d 100644 --- a/test/torture-s/bcp-1.c.s +++ b/test/torture-s/bcp-1.c.s @@ -233,10 +233,10 @@ opt2: # @opt2 main: # @main .result i32 # BB#0: # %entry - block - block - block - block + block + block + block + block i32.const $push35=, 0 i32.load $push0=, bad_t0($pop35) i32.call_indirect $push1=, $pop0 @@ -297,7 +297,7 @@ main: # @main i32.call_indirect $push22=, $pop21, $pop48 br_if 2, $pop22 # 2: down to label1 # BB#11: # %for.cond12.1 - block + block i32.const $push50=, 0 i32.load $push23=, good_t0($pop50) i32.call_indirect $push24=, $pop23 @@ -332,8 +332,8 @@ main: # @main unreachable .LBB17_18: # %for.cond23.2 end_block # label0: - block - block + block + block i32.const $push53=, 0 i32.load $push29=, opt_t0($pop53) i32.call_indirect $push30=, $pop29 @@ -436,6 +436,6 @@ global: .size global, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/bf-layout-1.c.s b/test/torture-s/bf-layout-1.c.s index 674542a29..9a2345d17 100644 --- a/test/torture-s/bf-layout-1.c.s +++ b/test/torture-s/bf-layout-1.c.s @@ -33,5 +33,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/bf-pack-1.c.s b/test/torture-s/bf-pack-1.c.s index 585582fc8..507fbf787 100644 --- a/test/torture-s/bf-pack-1.c.s +++ b/test/torture-s/bf-pack-1.c.s @@ -9,7 +9,7 @@ f: # @f .result i32 .local i64 # BB#0: # %entry - block + block i64.load $push9=, 0($0):p2align=2 tee_local $push8=, $1=, $pop9 i64.const $push0=, 65535 @@ -61,6 +61,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/bf-sign-1.c.s b/test/torture-s/bf-sign-1.c.s index 56cec20d9..0e4cae08a 100644 --- a/test/torture-s/bf-sign-1.c.s +++ b/test/torture-s/bf-sign-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/bf-sign-2.c.s b/test/torture-s/bf-sign-2.c.s index e08b222cc..109ee4ace 100644 --- a/test/torture-s/bf-sign-2.c.s +++ b/test/torture-s/bf-sign-2.c.s @@ -8,8 +8,8 @@ main: # @main .result i32 .local i64 # BB#0: # %entry - block - block + block + block i32.const $push37=, 0 i32.load8_u $push0=, x($pop37) i32.const $push1=, 7 @@ -98,6 +98,6 @@ x: .size x, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/bf64-1.c.s b/test/torture-s/bf64-1.c.s index 24027a57e..1dc2775a7 100644 --- a/test/torture-s/bf64-1.c.s +++ b/test/torture-s/bf64-1.c.s @@ -47,5 +47,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/bitfld-1.c.s b/test/torture-s/bitfld-1.c.s index 4a2350fb0..5e689cbaf 100644 --- a/test/torture-s/bitfld-1.c.s +++ b/test/torture-s/bitfld-1.c.s @@ -15,4 +15,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/bitfld-2.c.s b/test/torture-s/bitfld-2.c.s index 89eea55bb..e08c3c1b2 100644 --- a/test/torture-s/bitfld-2.c.s +++ b/test/torture-s/bitfld-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/bitfld-3.c.s b/test/torture-s/bitfld-3.c.s index f98a4e143..ba51c98ca 100644 --- a/test/torture-s/bitfld-3.c.s +++ b/test/torture-s/bitfld-3.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i64, i64 # BB#0: # %entry - block + block i32.const $push12=, 0 i64.load $push0=, a($pop12) i64.const $push1=, 8589934591 @@ -118,5 +118,5 @@ c: .size c, 24 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/bitfld-4.c.s b/test/torture-s/bitfld-4.c.s index 0c2cadcb6..4e60db687 100644 --- a/test/torture-s/bitfld-4.c.s +++ b/test/torture-s/bitfld-4.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, x($pop3) i32.const $push1=, -1863803 @@ -37,5 +37,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/bitfld-5.c.s b/test/torture-s/bitfld-5.c.s index 09577db5b..675ff585e 100644 --- a/test/torture-s/bitfld-5.c.s +++ b/test/torture-s/bitfld-5.c.s @@ -9,7 +9,7 @@ g: # @g # BB#0: # %entry #APP #NO_APP - block + block i64.ne $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -107,5 +107,5 @@ main: # @main .size .Lmain.t, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/bitfld-6.c.s b/test/torture-s/bitfld-6.c.s index 3999cebf8..553b7f122 100644 --- a/test/torture-s/bitfld-6.c.s +++ b/test/torture-s/bitfld-6.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/bswap-1.c.s b/test/torture-s/bswap-1.c.s index e903bb61c..552ee423f 100644 --- a/test/torture-s/bswap-1.c.s +++ b/test/torture-s/bswap-1.c.s @@ -103,7 +103,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i64.const $push0=, 18 i64.call $push1=, g@FUNCTION, $pop0 i64.const $push2=, 1297036692682702848 @@ -163,5 +163,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/builtin-bitops-1.c.s b/test/torture-s/builtin-bitops-1.c.s index 5a22a1cea..11d75e24b 100644 --- a/test/torture-s/builtin-bitops-1.c.s +++ b/test/torture-s/builtin-bitops-1.c.s @@ -10,14 +10,14 @@ my_ffs: # @my_ffs .local i32, i32, i32 # BB#0: # %entry i32.const $3=, 0 - block + block i32.eqz $push11=, $0 br_if 0, $pop11 # 0: down to label0 # BB#1: # %for.cond.preheader i32.const $2=, 1 .LBB0_2: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: copy_local $push8=, $2 tee_local $push7=, $3=, $pop8 i32.const $push6=, -1 @@ -56,8 +56,8 @@ my_ctz: # @my_ctz i32.const $1=, 0 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.const $push3=, 1 i32.shl $push0=, $pop3, $1 i32.and $push1=, $pop0, $0 @@ -92,8 +92,8 @@ my_clz: # @my_clz i32.const $1=, 31 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label5: + block + loop # label5: i32.const $push3=, 1 i32.shl $push0=, $pop3, $1 i32.and $push1=, $pop0, $0 @@ -132,8 +132,8 @@ my_clrsb: # @my_clrsb i32.const $3=, 1 .LBB3_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label7: + block + loop # label7: i32.shr_u $push1=, $0, $2 i32.const $push7=, 1 i32.and $push2=, $pop1, $pop7 @@ -172,7 +172,7 @@ my_popcount: # @my_popcount i32.const $2=, 0 .LBB4_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label8: + loop # label8: i32.const $push9=, 1 i32.shl $push0=, $pop9, $2 i32.and $push1=, $pop0, $0 @@ -206,7 +206,7 @@ my_parity: # @my_parity i32.const $2=, 0 .LBB5_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label9: + loop # label9: i32.const $push11=, 1 i32.shl $push0=, $pop11, $2 i32.and $push1=, $pop0, $0 @@ -238,14 +238,14 @@ my_ffsl: # @my_ffsl .local i32, i32, i32 # BB#0: # %entry i32.const $3=, 0 - block + block i32.eqz $push11=, $0 br_if 0, $pop11 # 0: down to label10 # BB#1: # %for.cond.preheader i32.const $2=, 1 .LBB6_2: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label11: + loop # label11: copy_local $push8=, $2 tee_local $push7=, $3=, $pop8 i32.const $push6=, -1 @@ -284,8 +284,8 @@ my_ctzl: # @my_ctzl i32.const $1=, 0 .LBB7_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label13: + block + loop # label13: i32.const $push3=, 1 i32.shl $push0=, $pop3, $1 i32.and $push1=, $pop0, $0 @@ -320,8 +320,8 @@ my_clzl: # @my_clzl i32.const $1=, 31 .LBB8_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label15: + block + loop # label15: i32.const $push3=, 1 i32.shl $push0=, $pop3, $1 i32.and $push1=, $pop0, $0 @@ -360,8 +360,8 @@ my_clrsbl: # @my_clrsbl i32.const $3=, 1 .LBB9_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label17: + block + loop # label17: i32.shr_u $push1=, $0, $2 i32.const $push7=, 1 i32.and $push2=, $pop1, $pop7 @@ -400,7 +400,7 @@ my_popcountl: # @my_popcountl i32.const $2=, 0 .LBB10_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label18: + loop # label18: i32.const $push9=, 1 i32.shl $push0=, $pop9, $2 i32.and $push1=, $pop0, $0 @@ -434,7 +434,7 @@ my_parityl: # @my_parityl i32.const $2=, 0 .LBB11_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label19: + loop # label19: i32.const $push11=, 1 i32.shl $push0=, $pop11, $2 i32.and $push1=, $pop0, $0 @@ -466,7 +466,7 @@ my_ffsll: # @my_ffsll .local i64, i32, i64, i32 # BB#0: # %entry i32.const $4=, 0 - block + block i64.eqz $push1=, $0 br_if 0, $pop1 # 0: down to label20 # BB#1: # %for.cond.preheader @@ -474,7 +474,7 @@ my_ffsll: # @my_ffsll i32.const $2=, 1 .LBB12_2: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label21: + loop # label21: copy_local $4=, $2 i64.const $push5=, 63 i64.gt_u $push2=, $3, $pop5 @@ -513,8 +513,8 @@ my_ctzll: # @my_ctzll i64.const $1=, 0 .LBB13_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label23: + block + loop # label23: i64.const $push5=, 1 i64.shl $push0=, $pop5, $1 i64.and $push1=, $pop0, $0 @@ -554,8 +554,8 @@ my_clzll: # @my_clzll i64.const $2=, 0 .LBB14_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label25: + block + loop # label25: i64.const $push5=, 1 i64.shl $push0=, $pop5, $1 i64.and $push1=, $pop0, $0 @@ -599,8 +599,8 @@ my_clrsbll: # @my_clrsbll i32.const $4=, 1 .LBB15_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label27: + block + loop # label27: i64.shr_u $push1=, $0, $2 i64.const $push7=, 1 i64.and $push2=, $pop1, $pop7 @@ -641,7 +641,7 @@ my_popcountll: # @my_popcountll i64.const $1=, 0 .LBB16_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label28: + loop # label28: i64.const $push9=, 1 i64.shl $push0=, $pop9, $1 i64.and $push1=, $pop0, $0 @@ -675,7 +675,7 @@ my_parityll: # @my_parityll i64.const $1=, 0 .LBB17_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label29: + loop # label29: i64.const $push11=, 1 i64.shl $push0=, $pop11, $1 i64.and $push1=, $pop0, $0 @@ -714,9 +714,9 @@ main: # @main # Child Loop BB18_17 Depth 2 # Child Loop BB18_21 Depth 2 # Child Loop BB18_24 Depth 2 - block - block - loop # label32: + block + block + loop # label32: i32.const $push205=, 2 i32.shl $push1=, $0, $pop205 i32.const $push204=, ints @@ -731,7 +731,7 @@ main: # @main i32.const $push196=, 0 i32.select $6=, $pop2, $pop196, $10 i32.const $3=, 0 - block + block i32.eqz $push397=, $10 br_if 0, $pop397 # 0: down to label33 # BB#2: # %for.cond.i.preheader @@ -740,8 +740,8 @@ main: # @main .LBB18_3: # %for.cond.i # Parent Loop BB18_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label35: + block + loop # label35: copy_local $push208=, $5 tee_local $push207=, $3=, $pop208 i32.const $push206=, 31 @@ -769,7 +769,7 @@ main: # @main br_if 1, $pop6 # 1: down to label31 # BB#7: # %if.end # in Loop: Header=BB18_1 Depth=1 - block + block i32.eqz $push399=, $10 br_if 0, $pop399 # 0: down to label36 # BB#8: # %land.lhs.true @@ -780,8 +780,8 @@ main: # @main .LBB18_9: # %for.body.i816 # Parent Loop BB18_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label38: + block + loop # label38: i32.const $push212=, 1 i32.shl $push7=, $pop212, $3 i32.and $push8=, $pop7, $10 @@ -808,8 +808,8 @@ main: # @main .LBB18_13: # %for.body.i875 # Parent Loop BB18_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label40: + block + loop # label40: i32.const $push218=, 1 i32.shl $push11=, $pop218, $3 i32.and $push12=, $pop11, $10 @@ -841,8 +841,8 @@ main: # @main .LBB18_17: # %for.body.i948 # Parent Loop BB18_1 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label42: + block + loop # label42: i32.shr_u $push15=, $3, $10 i32.const $push226=, 1 i32.and $push16=, $pop15, $pop226 @@ -873,7 +873,7 @@ main: # @main .LBB18_21: # %for.body.i1030 # Parent Loop BB18_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label43: + loop # label43: i32.const $push238=, 1 i32.shl $push21=, $pop238, $10 i32.and $push22=, $pop21, $3 @@ -899,7 +899,7 @@ main: # @main .LBB18_24: # %for.body.i1109 # Parent Loop BB18_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label44: + loop # label44: i32.const $push244=, 1 i32.shl $push27=, $pop244, $10 i32.and $push28=, $pop27, $3 @@ -938,7 +938,7 @@ main: # @main # Child Loop BB18_44 Depth 2 # Child Loop BB18_48 Depth 2 # Child Loop BB18_51 Depth 2 - loop # label45: + loop # label45: i32.const $push259=, 2 i32.shl $push34=, $0, $pop259 i32.const $push258=, longs @@ -953,7 +953,7 @@ main: # @main i32.const $push250=, 0 i32.select $6=, $pop35, $pop250, $10 i32.const $3=, 0 - block + block i32.eqz $push400=, $10 br_if 0, $pop400 # 0: down to label46 # BB#29: # %for.cond.i1185.preheader @@ -962,8 +962,8 @@ main: # @main .LBB18_30: # %for.cond.i1185 # Parent Loop BB18_28 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label48: + block + loop # label48: copy_local $push262=, $5 tee_local $push261=, $3=, $pop262 i32.const $push260=, 31 @@ -991,7 +991,7 @@ main: # @main br_if 1, $pop39 # 1: down to label31 # BB#34: # %if.end49 # in Loop: Header=BB18_28 Depth=1 - block + block i32.eqz $push402=, $10 br_if 0, $pop402 # 0: down to label49 # BB#35: # %land.lhs.true52 @@ -1002,8 +1002,8 @@ main: # @main .LBB18_36: # %for.body.i1266 # Parent Loop BB18_28 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label51: + block + loop # label51: i32.const $push266=, 1 i32.shl $push40=, $pop266, $3 i32.and $push41=, $pop40, $10 @@ -1030,8 +1030,8 @@ main: # @main .LBB18_40: # %for.body.i1345 # Parent Loop BB18_28 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label53: + block + loop # label53: i32.const $push272=, 1 i32.shl $push44=, $pop272, $3 i32.and $push45=, $pop44, $10 @@ -1063,8 +1063,8 @@ main: # @main .LBB18_44: # %for.body.i1426 # Parent Loop BB18_28 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label55: + block + loop # label55: i32.shr_u $push48=, $3, $10 i32.const $push280=, 1 i32.and $push49=, $pop48, $pop280 @@ -1095,7 +1095,7 @@ main: # @main .LBB18_48: # %for.body.i1511 # Parent Loop BB18_28 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label56: + loop # label56: i32.const $push292=, 1 i32.shl $push54=, $pop292, $10 i32.and $push55=, $pop54, $3 @@ -1121,7 +1121,7 @@ main: # @main .LBB18_51: # %for.body.i1591 # Parent Loop BB18_28 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label57: + loop # label57: i32.const $push298=, 1 i32.shl $push60=, $pop298, $10 i32.and $push61=, $pop60, $3 @@ -1160,7 +1160,7 @@ main: # @main # Child Loop BB18_70 Depth 2 # Child Loop BB18_74 Depth 2 # Child Loop BB18_77 Depth 2 - loop # label58: + loop # label58: i32.const $push315=, 0 i32.const $push314=, 3 i32.shl $push67=, $5, $pop314 @@ -1178,7 +1178,7 @@ main: # @main tee_local $push304=, $6=, $pop305 i32.select $0=, $pop315, $pop69, $pop304 i32.const $10=, 0 - block + block br_if 0, $6 # 0: down to label59 # BB#56: # %for.cond.i1667.preheader # in Loop: Header=BB18_55 Depth=1 @@ -1187,7 +1187,7 @@ main: # @main .LBB18_57: # %for.cond.i1667 # Parent Loop BB18_55 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label60: + loop # label60: copy_local $10=, $3 i64.const $push316=, 63 i64.gt_u $push70=, $8, $pop316 @@ -1212,7 +1212,7 @@ main: # @main br_if 1, $pop73 # 1: down to label31 # BB#60: # %if.end100 # in Loop: Header=BB18_55 Depth=1 - block + block br_if 0, $6 # 0: down to label61 # BB#61: # %land.lhs.true103 # in Loop: Header=BB18_55 Depth=1 @@ -1224,8 +1224,8 @@ main: # @main .LBB18_62: # %for.body.i1739 # Parent Loop BB18_55 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label63: + block + loop # label63: i64.const $push321=, 1 i64.shl $push75=, $pop321, $8 i64.and $push76=, $pop75, $9 @@ -1258,8 +1258,8 @@ main: # @main .LBB18_66: # %for.body.i1781 # Parent Loop BB18_55 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label65: + block + loop # label65: i64.const $push329=, 1 i64.shl $push80=, $pop329, $8 i64.and $push81=, $pop80, $9 @@ -1296,8 +1296,8 @@ main: # @main .LBB18_70: # %for.body.i1845 # Parent Loop BB18_55 Depth=1 # => This Inner Loop Header: Depth=2 - block - loop # label67: + block + loop # label67: i64.shr_u $push85=, $9, $8 i64.const $push338=, 1 i64.and $push86=, $pop85, $pop338 @@ -1331,7 +1331,7 @@ main: # @main .LBB18_74: # %for.body.i1928 # Parent Loop BB18_55 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label68: + loop # label68: i64.const $push351=, 1 i64.shl $push91=, $pop351, $8 i64.and $push92=, $pop91, $9 @@ -1357,7 +1357,7 @@ main: # @main .LBB18_77: # %for.body.i2005 # Parent Loop BB18_55 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label69: + loop # label69: i64.const $push357=, 1 i64.shl $push97=, $pop357, $8 i64.and $push98=, $pop97, $9 @@ -1451,8 +1451,8 @@ main: # @main i32.const $3=, 1 .LBB18_92: # %for.body.i1769 # =>This Inner Loop Header: Depth=1 - block - loop # label71: + block + loop # label71: i32.const $push365=, -1 i32.shr_u $push140=, $pop365, $10 i32.const $push364=, 1 @@ -1486,8 +1486,8 @@ main: # @main # BB#96: # %for.body.i1691.preheader .LBB18_97: # %for.body.i1691 # =>This Inner Loop Header: Depth=1 - block - loop # label73: + block + loop # label73: i64.const $push372=, 63 i64.eq $push149=, $8, $pop372 br_if 1, $pop149 # 1: down to label72 @@ -1510,8 +1510,8 @@ main: # @main i64.const $8=, 1 .LBB18_101: # %for.body.i1655 # =>This Inner Loop Header: Depth=1 - block - loop # label75: + block + loop # label75: i32.const $10=, 62 i64.const $push378=, 63 i64.eq $push151=, $8, $pop378 @@ -1534,8 +1534,8 @@ main: # @main i64.const $8=, 0 .LBB18_105: # %for.body.i1598 # =>This Inner Loop Header: Depth=1 - block - loop # label77: + block + loop # label77: i64.const $push383=, 63 i64.eq $push154=, $8, $pop383 br_if 1, $pop154 # 1: down to label76 @@ -1612,8 +1612,8 @@ main: # @main i32.const $10=, 1 .LBB18_119: # %for.body.i810 # =>This Inner Loop Header: Depth=1 - block - loop # label79: + block + loop # label79: i64.const $push390=, -1 i64.shr_u $push188=, $pop390, $8 i64.const $push389=, 1 @@ -1719,7 +1719,7 @@ longlongs: .size longlongs, 104 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype __builtin_clrsb, i32 .functype __builtin_clrsbl, i32 diff --git a/test/torture-s/builtin-constant.c.s b/test/torture-s/builtin-constant.c.s index 9f8837a4d..ce4073017 100644 --- a/test/torture-s/builtin-constant.c.s +++ b/test/torture-s/builtin-constant.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.load8_u $push0=, 0($0) i32.const $push1=, 48 i32.eq $push2=, $pop0, $pop1 @@ -47,6 +47,6 @@ main: # @main .size .L.str, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/builtin-prefetch-1.c.s b/test/torture-s/builtin-prefetch-1.c.s index 3e09fbce7..beeb845bf 100644 --- a/test/torture-s/builtin-prefetch-1.c.s +++ b/test/torture-s/builtin-prefetch-1.c.s @@ -80,5 +80,5 @@ arr: .size arr, 40 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/builtin-prefetch-2.c.s b/test/torture-s/builtin-prefetch-2.c.s index 0075ed914..d494f0a01 100644 --- a/test/torture-s/builtin-prefetch-2.c.s +++ b/test/torture-s/builtin-prefetch-2.c.s @@ -201,5 +201,5 @@ simple_static_local.ix: .size simple_static_local.ix, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/builtin-prefetch-3.c.s b/test/torture-s/builtin-prefetch-3.c.s index 843c52863..ac766c75c 100644 --- a/test/torture-s/builtin-prefetch-3.c.s +++ b/test/torture-s/builtin-prefetch-3.c.s @@ -264,5 +264,5 @@ stat_int_arr: .size stat_int_arr, 400 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/builtin-prefetch-4.c.s b/test/torture-s/builtin-prefetch-4.c.s index 030f67ae0..77431c5b2 100644 --- a/test/torture-s/builtin-prefetch-4.c.s +++ b/test/torture-s/builtin-prefetch-4.c.s @@ -421,7 +421,7 @@ main: # @main .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push9=, 0 i32.load $push8=, ptr($pop9) tee_local $push7=, $0=, $pop8 @@ -538,6 +538,6 @@ getintcnt: .size getintcnt, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/builtin-prefetch-5.c.s b/test/torture-s/builtin-prefetch-5.c.s index 6e2c22ee3..59be2e902 100644 --- a/test/torture-s/builtin-prefetch-5.c.s +++ b/test/torture-s/builtin-prefetch-5.c.s @@ -113,5 +113,5 @@ s: .size s, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/builtin-prefetch-6.c.s b/test/torture-s/builtin-prefetch-6.c.s index 55663d72f..84098ae75 100644 --- a/test/torture-s/builtin-prefetch-6.c.s +++ b/test/torture-s/builtin-prefetch-6.c.s @@ -105,7 +105,7 @@ prefetch_for_read: # @prefetch_for_read i32.const $0=, -260 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push2=, 4 i32.add $push1=, $0, $pop2 tee_local $push0=, $0=, $pop1 @@ -127,7 +127,7 @@ prefetch_for_write: # @prefetch_for_write i32.const $0=, -260 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push2=, 4 i32.add $push1=, $0, $pop2 tee_local $push0=, $0=, $pop1 @@ -175,5 +175,5 @@ arr_used: .size arr_used, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/builtin-types-compatible-p.c.s b/test/torture-s/builtin-types-compatible-p.c.s index 488be91dd..50df7ef35 100644 --- a/test/torture-s/builtin-types-compatible-p.c.s +++ b/test/torture-s/builtin-types-compatible-p.c.s @@ -42,5 +42,5 @@ rootbeer: .size rootbeer, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/call-trap-1.c.s b/test/torture-s/call-trap-1.c.s index f322f1e2f..45dd883d2 100644 --- a/test/torture-s/call-trap-1.c.s +++ b/test/torture-s/call-trap-1.c.s @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/cbrt.c.s b/test/torture-s/cbrt.c.s index bdea1f441..2ea04d463 100644 --- a/test/torture-s/cbrt.c.s +++ b/test/torture-s/cbrt.c.s @@ -17,7 +17,7 @@ cbrtl: # @cbrtl i64.const $push0=, 0 i64.store 8($pop68), $pop0 f64.store 0($6), $0 - block + block i64.reinterpret/f64 $push67=, $0 tee_local $push66=, $1=, $pop67 i64.const $push1=, 32 @@ -37,15 +37,15 @@ cbrtl: # @cbrtl return $pop70 .LBB0_2: # %if.end end_block # label0: - block + block i32.wrap/i64 $push6=, $1 i32.or $push7=, $pop6, $3 i32.eqz $push90=, $pop7 br_if 0, $pop90 # 0: down to label1 # BB#3: # %if.end13 i32.store 4($6), $3 - block - block + block + block i32.const $push8=, 1048575 i32.gt_s $push9=, $3, $pop8 br_if 0, $pop9 # 0: down to label3 @@ -155,5 +155,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/cmpdi-1.c.s b/test/torture-s/cmpdi-1.c.s index 4b3a48c07..b171faf6d 100644 --- a/test/torture-s/cmpdi-1.c.s +++ b/test/torture-s/cmpdi-1.c.s @@ -183,8 +183,8 @@ main: # @main .LBB10_1: # %for.body # =>This Loop Header: Depth=1 # Child Loop BB10_2 Depth 2 - block - loop # label1: + block + loop # label1: i32.const $2=, args i32.const $push45=, 3 i32.shl $push0=, $0, $pop45 @@ -195,7 +195,7 @@ main: # @main .LBB10_2: # %for.body3 # Parent Loop BB10_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label2: + loop # label2: i32.const $push51=, 13 i32.const $push50=, 140 i64.load $push49=, 0($2) @@ -1003,6 +1003,6 @@ correct_results: .size correct_results, 2560 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/cmpsf-1.c.s b/test/torture-s/cmpsf-1.c.s index 67f0fce76..313330001 100644 --- a/test/torture-s/cmpsf-1.c.s +++ b/test/torture-s/cmpsf-1.c.s @@ -123,8 +123,8 @@ main: # @main .LBB6_1: # %for.body # =>This Loop Header: Depth=1 # Child Loop BB6_2 Depth 2 - block - loop # label1: + block + loop # label1: i32.const $2=, args i32.const $push35=, 2 i32.shl $push0=, $0, $pop35 @@ -135,7 +135,7 @@ main: # @main .LBB6_2: # %for.body3 # Parent Loop BB6_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label2: + loop # label2: i32.const $push39=, 13 i32.const $push38=, 140 f32.load $push37=, 0($2) @@ -649,6 +649,6 @@ correct_results: .size correct_results, 1536 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/cmpsi-1.c.s b/test/torture-s/cmpsi-1.c.s index c0e0d13ac..15bac462a 100644 --- a/test/torture-s/cmpsi-1.c.s +++ b/test/torture-s/cmpsi-1.c.s @@ -8,7 +8,7 @@ f1: # @f1 .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.sub $push3=, $0, $1 tee_local $push2=, $0=, $pop3 i32.const $push0=, 0 @@ -32,7 +32,7 @@ f2: # @f2 .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.sub $push3=, $0, $1 tee_local $push2=, $0=, $pop3 i32.const $push0=, 0 @@ -77,6 +77,6 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/cmpsi-2.c.s b/test/torture-s/cmpsi-2.c.s index c40bcd76b..61e293c69 100644 --- a/test/torture-s/cmpsi-2.c.s +++ b/test/torture-s/cmpsi-2.c.s @@ -183,8 +183,8 @@ main: # @main .LBB10_1: # %for.body # =>This Loop Header: Depth=1 # Child Loop BB10_2 Depth 2 - block - loop # label1: + block + loop # label1: i32.const $2=, args i32.const $push45=, 2 i32.shl $push0=, $0, $pop45 @@ -195,7 +195,7 @@ main: # @main .LBB10_2: # %for.body3 # Parent Loop BB10_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label2: + loop # label2: i32.const $push51=, 13 i32.const $push50=, 140 i32.load $push49=, 0($2) @@ -1003,6 +1003,6 @@ correct_results: .size correct_results, 2560 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/compare-1.c.s b/test/torture-s/compare-1.c.s index a1441b1f6..87d6a2d68 100644 --- a/test/torture-s/compare-1.c.s +++ b/test/torture-s/compare-1.c.s @@ -8,11 +8,11 @@ ieq: # @ieq .param i32, i32, i32 .result i32 # BB#0: # %entry - block - block - block - block - block + block + block + block + block + block i32.ne $push1=, $0, $1 tee_local $push0=, $0=, $pop1 i32.eqz $push2=, $pop0 @@ -27,8 +27,8 @@ ieq: # @ieq br_if 2, $pop4 # 2: down to label1 .LBB0_3: # %if.end6 end_block # label3: - block - block + block + block br_if 0, $0 # 0: down to label6 # BB#4: # %if.then10 br_if 1, $2 # 1: down to label5 @@ -40,8 +40,8 @@ ieq: # @ieq br_if 1, $2 # 1: down to label2 .LBB0_7: # %if.end18 end_block # label5: - block - block + block + block i32.eqz $push5=, $0 br_if 0, $pop5 # 0: down to label8 # BB#8: # %if.else26 @@ -54,8 +54,8 @@ ieq: # @ieq br_if 3, $pop7 # 3: down to label0 .LBB0_10: # %if.end30 end_block # label7: - block - block + block + block br_if 0, $0 # 0: down to label10 # BB#11: # %if.then34 br_if 1, $2 # 1: down to label9 @@ -92,9 +92,9 @@ ine: # @ine .param i32, i32, i32 .result i32 # BB#0: # %entry - block - block - block + block + block + block i32.ne $push0=, $0, $1 br_if 0, $pop0 # 0: down to label13 # BB#1: # %if.else @@ -126,9 +126,9 @@ ilt: # @ilt .param i32, i32, i32 .result i32 # BB#0: # %entry - block - block - block + block + block + block i32.ge_s $push0=, $0, $1 br_if 0, $pop0 # 0: down to label16 # BB#1: # %if.then @@ -158,9 +158,9 @@ ile: # @ile .param i32, i32, i32 .result i32 # BB#0: # %entry - block - block - block + block + block + block i32.le_s $push0=, $0, $1 br_if 0, $pop0 # 0: down to label19 # BB#1: # %if.else @@ -192,9 +192,9 @@ igt: # @igt .param i32, i32, i32 .result i32 # BB#0: # %entry - block - block - block + block + block + block i32.le_s $push0=, $0, $1 br_if 0, $pop0 # 0: down to label22 # BB#1: # %if.then @@ -224,9 +224,9 @@ ige: # @ige .param i32, i32, i32 .result i32 # BB#0: # %entry - block - block - block + block + block + block i32.ge_s $push0=, $0, $1 br_if 0, $pop0 # 0: down to label25 # BB#1: # %if.else @@ -264,5 +264,5 @@ main: # @main .size main, .Lfunc_end6-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/compare-2.c.s b/test/torture-s/compare-2.c.s index 38e2de1ce..9adf055b8 100644 --- a/test/torture-s/compare-2.c.s +++ b/test/torture-s/compare-2.c.s @@ -30,4 +30,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/compare-3.c.s b/test/torture-s/compare-3.c.s index e81c30568..dba5d8db7 100644 --- a/test/torture-s/compare-3.c.s +++ b/test/torture-s/compare-3.c.s @@ -98,4 +98,4 @@ main: # @main .size main, .Lfunc_end7-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/complex-1.c.s b/test/torture-s/complex-1.c.s index c2750e0a4..cbac62b68 100644 --- a/test/torture-s/complex-1.c.s +++ b/test/torture-s/complex-1.c.s @@ -73,5 +73,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/complex-2.c.s b/test/torture-s/complex-2.c.s index b4ef061b8..2aaa9e57e 100644 --- a/test/torture-s/complex-2.c.s +++ b/test/torture-s/complex-2.c.s @@ -27,7 +27,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push6=, 0 f64.load $push1=, ag($pop6) f64.const $push5=, 0x1p0 @@ -72,6 +72,6 @@ bg: .size bg, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/complex-3.c.s b/test/torture-s/complex-3.c.s index 55c7290b3..dd0518c95 100644 --- a/test/torture-s/complex-3.c.s +++ b/test/torture-s/complex-3.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/complex-4.c.s b/test/torture-s/complex-4.c.s index 121b3ab34..9a4172db4 100644 --- a/test/torture-s/complex-4.c.s +++ b/test/torture-s/complex-4.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/complex-5.c.s b/test/torture-s/complex-5.c.s index dd126ae25..e5226a7a3 100644 --- a/test/torture-s/complex-5.c.s +++ b/test/torture-s/complex-5.c.s @@ -66,7 +66,7 @@ main: # @main f32.load $push8=, 12($4) f32.add $push9=, $2, $pop8 f32.store y+4($pop23), $pop9 - block + block i32.const $push22=, 0 f32.load $push11=, z($pop22) i32.const $push21=, 0 @@ -132,7 +132,7 @@ z: .size z, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype __divsc3, void, i32, f32, f32, f32, f32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/complex-6.c.s b/test/torture-s/complex-6.c.s index fd7439afd..8a270edb1 100644 --- a/test/torture-s/complex-6.c.s +++ b/test/torture-s/complex-6.c.s @@ -198,4 +198,4 @@ err: .size err, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/complex-7.c.s b/test/torture-s/complex-7.c.s index 43e4b3b5e..38163f16b 100644 --- a/test/torture-s/complex-7.c.s +++ b/test/torture-s/complex-7.c.s @@ -14,7 +14,7 @@ check_float: # @check_float f32.load $6=, 4($1) i32.const $push15=, 0 f32.load $7=, f1+4($pop15) - block + block f32.ne $push1=, $9, $8 br_if 0, $pop1 # 0: down to label0 # BB#1: # %entry @@ -92,7 +92,7 @@ check_double: # @check_double f64.load $6=, 8($1) i32.const $push15=, 0 f64.load $7=, d1+8($pop15) - block + block f64.ne $push1=, $9, $8 br_if 0, $pop1 # 0: down to label1 # BB#1: # %entry @@ -181,7 +181,7 @@ check_long_double: # @check_long_double i64.load $9=, ld1+24($pop36) i32.const $push35=, 0 i64.load $6=, ld1+16($pop35) - block + block br_if 0, $10 # 0: down to label2 # BB#1: # %entry i32.call $push6=, __netf2@FUNCTION, $8, $7, $6, $9 @@ -781,6 +781,6 @@ ld5: .size ld5, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/compndlit-1.c.s b/test/torture-s/compndlit-1.c.s index 9b4013d79..a4fc8b6ca 100644 --- a/test/torture-s/compndlit-1.c.s +++ b/test/torture-s/compndlit-1.c.s @@ -20,7 +20,7 @@ main: # @main tee_local $push7=, $0=, $pop8 i32.select $push6=, $pop5, $pop4, $pop7 i32.store x($pop10), $pop6 - block + block i32.eqz $push12=, $0 br_if 0, $pop12 # 0: down to label0 # BB#1: # %if.end @@ -48,6 +48,6 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/const-addr-expr-1.c.s b/test/torture-s/const-addr-expr-1.c.s index aecfd6b81..95d454d8f 100644 --- a/test/torture-s/const-addr-expr-1.c.s +++ b/test/torture-s/const-addr-expr-1.c.s @@ -8,7 +8,7 @@ main: # @main .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push9=, 0 i32.load $push0=, Upgd_minor_ID($pop9) i32.load $push1=, 0($pop0) @@ -76,5 +76,5 @@ Upgd_minor_ID1: .size Upgd_minor_ID1, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/conversion.c.s b/test/torture-s/conversion.c.s index 9c2dfc17e..6886b573f 100644 --- a/test/torture-s/conversion.c.s +++ b/test/torture-s/conversion.c.s @@ -132,7 +132,7 @@ fnear: # @fnear .local i32 # BB#0: # %entry i32.const $2=, 1 - block + block f32.sub $push5=, $0, $1 tee_local $push4=, $1=, $pop5 f32.const $push0=, 0x0p0 @@ -160,7 +160,7 @@ dnear: # @dnear .local i32 # BB#0: # %entry i32.const $2=, 1 - block + block f64.sub $push5=, $0, $1 tee_local $push4=, $1=, $pop5 f64.const $push0=, 0x0p0 @@ -198,7 +198,7 @@ ldnear: # @ldnear i32.add $push18=, $5, $pop17 call __subtf3@FUNCTION, $pop18, $0, $1, $2, $3 i32.const $4=, 1 - block + block i64.load $push26=, 16($5) tee_local $push25=, $2=, $pop26 i32.const $push19=, 16 @@ -596,5 +596,5 @@ main: # @main .size main, .Lfunc_end31-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/cvt-1.c.s b/test/torture-s/cvt-1.c.s index d689fc57d..029390645 100644 --- a/test/torture-s/cvt-1.c.s +++ b/test/torture-s/cvt-1.c.s @@ -43,5 +43,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/dbra-1.c.s b/test/torture-s/dbra-1.c.s index ceb262f70..a3aa00f01 100644 --- a/test/torture-s/dbra-1.c.s +++ b/test/torture-s/dbra-1.c.s @@ -74,7 +74,7 @@ f5: # @f5 .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, -10 i32.lt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -120,5 +120,5 @@ main: # @main .size main, .Lfunc_end6-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/divcmp-1.c.s b/test/torture-s/divcmp-1.c.s index c8421f4d7..99d8c7c3e 100644 --- a/test/torture-s/divcmp-1.c.s +++ b/test/torture-s/divcmp-1.c.s @@ -356,4 +356,4 @@ main: # @main .size main, .Lfunc_end22-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/divcmp-2.c.s b/test/torture-s/divcmp-2.c.s index 88ced167e..0fe6c11c5 100644 --- a/test/torture-s/divcmp-2.c.s +++ b/test/torture-s/divcmp-2.c.s @@ -116,4 +116,4 @@ main: # @main .size main, .Lfunc_end6-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/divcmp-3.c.s b/test/torture-s/divcmp-3.c.s index 6127073c4..fb89beae9 100644 --- a/test/torture-s/divcmp-3.c.s +++ b/test/torture-s/divcmp-3.c.s @@ -182,4 +182,4 @@ main: # @main .size main, .Lfunc_end12-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/divcmp-4.c.s b/test/torture-s/divcmp-4.c.s index 472d41e5c..d956b2ff5 100644 --- a/test/torture-s/divcmp-4.c.s +++ b/test/torture-s/divcmp-4.c.s @@ -202,4 +202,4 @@ main: # @main .size main, .Lfunc_end12-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/divcmp-5.c.s b/test/torture-s/divcmp-5.c.s index 91ec7a04b..8802dca39 100644 --- a/test/torture-s/divcmp-5.c.s +++ b/test/torture-s/divcmp-5.c.s @@ -42,4 +42,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/divconst-1.c.s b/test/torture-s/divconst-1.c.s index c06bc99da..e3a027377 100644 --- a/test/torture-s/divconst-1.c.s +++ b/test/torture-s/divconst-1.c.s @@ -33,5 +33,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/divconst-2.c.s b/test/torture-s/divconst-2.c.s index 72df178a3..e01a5f249 100644 --- a/test/torture-s/divconst-2.c.s +++ b/test/torture-s/divconst-2.c.s @@ -55,7 +55,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push22=, 0 i32.load $push21=, nums($pop22) tee_local $push20=, $0=, $pop21 @@ -118,6 +118,6 @@ nums: .size nums, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/divconst-3.c.s b/test/torture-s/divconst-3.c.s index 906203be7..9fd0996a1 100644 --- a/test/torture-s/divconst-3.c.s +++ b/test/torture-s/divconst-3.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/divmod-1.c.s b/test/torture-s/divmod-1.c.s index 1570bd151..8c36e1c77 100644 --- a/test/torture-s/divmod-1.c.s +++ b/test/torture-s/divmod-1.c.s @@ -157,5 +157,5 @@ main: # @main .size main, .Lfunc_end10-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/doloop-1.c.s b/test/torture-s/doloop-1.c.s index 6548fa952..e79f26e64 100644 --- a/test/torture-s/doloop-1.c.s +++ b/test/torture-s/doloop-1.c.s @@ -11,7 +11,7 @@ main: # @main i32.const $0=, 0 .LBB0_1: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push12=, 0 i32.const $push11=, 0 i32.load $push0=, i($pop11) @@ -26,7 +26,7 @@ main: # @main br_if 0, $pop2 # 0: up to label0 # BB#2: # %do.end end_loop - block + block i32.const $push13=, 0 i32.load $push3=, i($pop13) i32.const $push4=, 256 @@ -54,6 +54,6 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/doloop-2.c.s b/test/torture-s/doloop-2.c.s index 6aa6a1e03..d9fa857ba 100644 --- a/test/torture-s/doloop-2.c.s +++ b/test/torture-s/doloop-2.c.s @@ -11,7 +11,7 @@ main: # @main i32.const $0=, 0 .LBB0_1: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push12=, 0 i32.const $push11=, 0 i32.load $push0=, i($pop11) @@ -26,7 +26,7 @@ main: # @main br_if 0, $pop2 # 0: up to label0 # BB#2: # %do.end end_loop - block + block i32.const $push13=, 0 i32.load $push3=, i($pop13) i32.const $push4=, 65536 @@ -54,6 +54,6 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/eeprof-1.c.s b/test/torture-s/eeprof-1.c.s index acf3d63a3..8e693aac5 100644 --- a/test/torture-s/eeprof-1.c.s +++ b/test/torture-s/eeprof-1.c.s @@ -6,7 +6,7 @@ .type foo,@function foo: # @foo # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push1=, last_fn_entered($pop0) i32.const $push2=, foo@FUNCTION @@ -28,7 +28,7 @@ foo: # @foo .type nfoo,@function nfoo: # @nfoo # BB#0: # %entry - block + block i32.const $push19=, 0 i32.load $push1=, entry_calls($pop19) i32.const $push18=, 2 @@ -94,7 +94,7 @@ nfoo: # @nfoo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push21=, 0 i32.load $push1=, exit_calls($pop21) i32.const $push20=, 0 @@ -200,7 +200,7 @@ __cyg_profile_func_exit: # @__cyg_profile_func_exit .type foo2,@function foo2: # @foo2 # BB#0: # %entry - block + block i32.const $push17=, 0 i32.load $push1=, entry_calls($pop17) i32.const $push2=, 1 @@ -288,5 +288,5 @@ last_fn_exited: .size last_fn_exited, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/enum-1.c.s b/test/torture-s/enum-1.c.s index 8aff38043..2339e36e4 100644 --- a/test/torture-s/enum-1.c.s +++ b/test/torture-s/enum-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/enum-2.c.s b/test/torture-s/enum-2.c.s index 29b665af0..ecdafa334 100644 --- a/test/torture-s/enum-2.c.s +++ b/test/torture-s/enum-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/enum-3.c.s b/test/torture-s/enum-3.c.s index 9c8193122..6b58dca47 100644 --- a/test/torture-s/enum-3.c.s +++ b/test/torture-s/enum-3.c.s @@ -47,5 +47,5 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/extzvsi.c.s b/test/torture-s/extzvsi.c.s index 723e5935d..d4fe764ba 100644 --- a/test/torture-s/extzvsi.c.s +++ b/test/torture-s/extzvsi.c.s @@ -58,4 +58,4 @@ x: .size x, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/ffs-1.c.s b/test/torture-s/ffs-1.c.s index 1bf7448ba..a3fc6e676 100644 --- a/test/torture-s/ffs-1.c.s +++ b/test/torture-s/ffs-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load $push0=, a($pop1) br_if 0, $pop0 # 0: down to label0 @@ -33,6 +33,6 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/ffs-2.c.s b/test/torture-s/ffs-2.c.s index 7d1614149..db9f3c4d9 100644 --- a/test/torture-s/ffs-2.c.s +++ b/test/torture-s/ffs-2.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push46=, 0 i32.load $push45=, ffstesttab($pop46) tee_local $push44=, $0=, $pop45 @@ -149,6 +149,6 @@ ffstesttab: .size ffstesttab, 64 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/float-floor.c.s b/test/torture-s/float-floor.c.s index 38938b947..6e2a53bf6 100644 --- a/test/torture-s/float-floor.c.s +++ b/test/torture-s/float-floor.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local f64 # BB#0: # %entry - block + block i32.const $push0=, 0 f64.load $push1=, d($pop0) f64.floor $push10=, $pop1 @@ -44,6 +44,6 @@ d: .size d, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype floor, f64, f64 .functype abort, void diff --git a/test/torture-s/floatunsisf-1.c.s b/test/torture-s/floatunsisf-1.c.s index bdbf2fc4e..010978933 100644 --- a/test/torture-s/floatunsisf-1.c.s +++ b/test/torture-s/floatunsisf-1.c.s @@ -15,7 +15,7 @@ main: # @main i32.const $push8=, 0 i32.const $push2=, 1325400065 i32.store f2($pop8), $pop2 - block + block i32.const $push7=, 0 f32.load $push3=, f1($pop7) i32.const $push6=, 0 @@ -62,6 +62,6 @@ f2: .size f2, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/fprintf-1.c.s b/test/torture-s/fprintf-1.c.s index a5a8e83e6..542fc84e8 100644 --- a/test/torture-s/fprintf-1.c.s +++ b/test/torture-s/fprintf-1.c.s @@ -22,7 +22,7 @@ main: # @main i32.load $push71=, stdout($pop72) tee_local $push70=, $0=, $pop71 i32.call $drop=, fwrite@FUNCTION, $pop1, $pop0, $pop73, $pop70 - block + block i32.const $push69=, .L.str i32.const $push68=, 0 i32.call $push2=, fprintf@FUNCTION, $0, $pop69, $pop68 @@ -201,7 +201,7 @@ main: # @main .size .L.str.7, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype fprintf, i32, i32, i32 .functype abort, void .functype fwrite, i32, i32, i32, i32, i32 diff --git a/test/torture-s/fprintf-chk-1.c.s b/test/torture-s/fprintf-chk-1.c.s index 254a2b2b6..58ada854e 100644 --- a/test/torture-s/fprintf-chk-1.c.s +++ b/test/torture-s/fprintf-chk-1.c.s @@ -16,7 +16,7 @@ __fprintf_chk: # @__fprintf_chk i32.sub $push11=, $pop3, $pop4 tee_local $push10=, $4=, $pop11 i32.store __stack_pointer($pop5), $pop10 - block + block i32.const $push9=, 0 i32.load $push0=, should_optimize($pop9) br_if 0, $pop0 # 0: down to label0 @@ -63,7 +63,7 @@ main: # @main i32.const $push89=, .L.str i32.const $push88=, 0 i32.call $drop=, __fprintf_chk@FUNCTION, $pop90, $1, $pop89, $pop88 - block + block i32.const $push87=, 0 i32.load $push1=, should_optimize($pop87) i32.eqz $push200=, $pop1 @@ -445,6 +445,6 @@ should_optimize: .size .L.str.7, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype vfprintf, i32, i32, i32, i32 diff --git a/test/torture-s/frame-address.c.s b/test/torture-s/frame-address.c.s index cca3d2787..78a66dc8a 100644 --- a/test/torture-s/frame-address.c.s +++ b/test/torture-s/frame-address.c.s @@ -16,7 +16,7 @@ check_fa_work: # @check_fa_work tee_local $push17=, $2=, $pop18 i32.const $push0=, 0 i32.store8 15($pop17), $pop0 - block + block i32.const $push11=, 15 i32.add $push12=, $2, $pop11 i32.le_u $push1=, $pop12, $0 @@ -114,7 +114,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.call $push0=, check_fa@FUNCTION, $0 i32.eqz $push2=, $pop0 br_if 0, $pop2 # 0: down to label1 @@ -130,5 +130,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/func-ptr-1.c.s b/test/torture-s/func-ptr-1.c.s index a0d3ca937..641ea8966 100644 --- a/test/torture-s/func-ptr-1.c.s +++ b/test/torture-s/func-ptr-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/gofast.c.s b/test/torture-s/gofast.c.s index abf4ee96d..236b798b2 100644 --- a/test/torture-s/gofast.c.s +++ b/test/torture-s/gofast.c.s @@ -464,7 +464,7 @@ fail: # @fail main: # @main .result i32 # BB#0: # %if.end11 - block + block i32.const $push1=, 0 i32.load $push0=, fail_count($pop1) br_if 0, $pop0 # 0: down to label0 @@ -496,7 +496,7 @@ fail_count: .size .L.str, 17 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype fprintf, i32, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/ifcvt-onecmpl-abs-1.c.s b/test/torture-s/ifcvt-onecmpl-abs-1.c.s index f0efd1a23..0c3f6680e 100644 --- a/test/torture-s/ifcvt-onecmpl-abs-1.c.s +++ b/test/torture-s/ifcvt-onecmpl-abs-1.c.s @@ -23,7 +23,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, -1 i32.call $push1=, foo@FUNCTION, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/index-1.c.s b/test/torture-s/index-1.c.s index 2f7d8b25b..23adf8878 100644 --- a/test/torture-s/index-1.c.s +++ b/test/torture-s/index-1.c.s @@ -25,7 +25,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, a+120($pop3) i32.const $push1=, 30 @@ -92,6 +92,6 @@ a: .size a, 160 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/inst-check.c.s b/test/torture-s/inst-check.c.s index f9dd98f79..f0923b0b7 100644 --- a/test/torture-s/inst-check.c.s +++ b/test/torture-s/inst-check.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.const $push0=, 1 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -51,5 +51,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/int-compare.c.s b/test/torture-s/int-compare.c.s index 7b120e958..6c57accb4 100644 --- a/test/torture-s/int-compare.c.s +++ b/test/torture-s/int-compare.c.s @@ -63,7 +63,7 @@ le: # @le true: # @true .param i32 # BB#0: # %entry - block + block i32.eqz $push0=, $0 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -83,7 +83,7 @@ true: # @true false: # @false .param i32 # BB#0: # %entry - block + block br_if 0, $0 # 0: down to label1 # BB#1: # %if.end return @@ -124,6 +124,6 @@ main: # @main .size main, .Lfunc_end7-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/ipa-sra-1.c.s b/test/torture-s/ipa-sra-1.c.s index a73f65ca6..86788be39 100644 --- a/test/torture-s/ipa-sra-1.c.s +++ b/test/torture-s/ipa-sra-1.c.s @@ -15,4 +15,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/ipa-sra-2.c.s b/test/torture-s/ipa-sra-2.c.s index c96fe1b17..e295333c4 100644 --- a/test/torture-s/ipa-sra-2.c.s +++ b/test/torture-s/ipa-sra-2.c.s @@ -42,6 +42,6 @@ foo: # @foo .size foo, .Lfunc_end1-foo - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype calloc, i32, i32, i32 .functype free, void, i32 diff --git a/test/torture-s/longlong.c.s b/test/torture-s/longlong.c.s index 86ef69585..f6e9340d9 100644 --- a/test/torture-s/longlong.c.s +++ b/test/torture-s/longlong.c.s @@ -7,7 +7,7 @@ alpha_ep_extbl_i_eq_0: # @alpha_ep_extbl_i_eq_0 .local i32, i32, i32 # BB#0: # %entry - block + block i32.const $push28=, 0 i32.load $push27=, pars($pop28) tee_local $push26=, $0=, $pop27 @@ -81,7 +81,7 @@ main: # @main i64.const $push10=, 255 i64.and $push11=, $pop9, $pop10 i64.store 16($pop16), $pop11 - block + block i32.const $push15=, 0 i64.load $push12=, b+16($pop15) i64.const $push13=, 77 @@ -127,6 +127,6 @@ pars: .size pars, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/loop-1.c.s b/test/torture-s/loop-1.c.s index f324b92c4..1e3de645c 100644 --- a/test/torture-s/loop-1.c.s +++ b/test/torture-s/loop-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-10.c.s b/test/torture-s/loop-10.c.s index ccd92dc50..f136d832c 100644 --- a/test/torture-s/loop-10.c.s +++ b/test/torture-s/loop-10.c.s @@ -15,7 +15,7 @@ main: # @main i32.const $push0=, 2 i32.add $push1=, $pop2, $pop0 i32.store count($pop5), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end4 i32.const $push6=, 0 @@ -36,5 +36,5 @@ count: .size count, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/loop-11.c.s b/test/torture-s/loop-11.c.s index a410cd3ba..630156d02 100644 --- a/test/torture-s/loop-11.c.s +++ b/test/torture-s/loop-11.c.s @@ -12,7 +12,7 @@ main: # @main i32.const $0=, a+792 .LBB0_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push9=, -1 i32.add $push8=, $1, $pop9 tee_local $push7=, $1=, $pop8 @@ -28,8 +28,8 @@ main: # @main i32.const $0=, a .LBB0_3: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.load $push1=, 0($0) i32.ne $push2=, $1, $pop1 br_if 1, $pop2 # 1: down to label1 @@ -63,5 +63,5 @@ a: .size a, 796 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/loop-12.c.s b/test/torture-s/loop-12.c.s index 9f7e02523..16722d6f0 100644 --- a/test/torture-s/loop-12.c.s +++ b/test/torture-s/loop-12.c.s @@ -11,9 +11,9 @@ foo: # @foo i32.load $1=, p($pop7) .LBB0_1: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label1: - block + block + loop # label1: + block i32.load8_u $push1=, 0($1) i32.const $push16=, -10 i32.add $push0=, $pop1, $pop16 @@ -60,11 +60,11 @@ main: # @main i32.const $1=, .L.str .LBB1_1: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: i32.const $push14=, 0 i32.store p($pop14), $1 - block + block i32.load8_u $push1=, 0($1) i32.const $push13=, -10 i32.add $push0=, $pop1, $pop13 @@ -114,4 +114,4 @@ p: .size .L.str, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/loop-13.c.s b/test/torture-s/loop-13.c.s index 4adca9af5..cbc1cf335 100644 --- a/test/torture-s/loop-13.c.s +++ b/test/torture-s/loop-13.c.s @@ -8,7 +8,7 @@ scale: # @scale .param i32, i32, i32 .local i32, i32 # BB#0: # %entry - block + block i32.load $push15=, 0($0) tee_local $push14=, $3=, $pop15 i32.const $push13=, 1 @@ -35,7 +35,7 @@ scale: # @scale i32.add $2=, $2, $pop17 .LBB0_4: # %for.body.for.body_crit_edge # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load $push9=, 0($1) i32.load $push26=, 0($0) tee_local $push25=, $3=, $pop26 @@ -75,4 +75,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/loop-14.c.s b/test/torture-s/loop-14.c.s index 823421ab3..a9af19cc3 100644 --- a/test/torture-s/loop-14.c.s +++ b/test/torture-s/loop-14.c.s @@ -41,5 +41,5 @@ a3: .size a3, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-15.c.s b/test/torture-s/loop-15.c.s index d711b2181..0b11d909b 100644 --- a/test/torture-s/loop-15.c.s +++ b/test/torture-s/loop-15.c.s @@ -8,13 +8,13 @@ foo: # @foo .param i32, i32 .local i32 # BB#0: # %entry - block + block i32.le_u $push0=, $1, $0 br_if 0, $pop0 # 0: down to label0 # BB#1: # %while.body.preheader .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push5=, -4 i32.add $push4=, $1, $pop5 tee_local $push3=, $2=, $pop4 @@ -61,10 +61,10 @@ main: # @main # Child Loop BB1_6 Depth 3 # Child Loop BB1_9 Depth 3 # Child Loop BB1_12 Depth 3 - block - block - block - loop # label5: + block + block + block + loop # label5: i32.const $push29=, 2 i32.shl $push1=, $3, $pop29 i32.add $4=, $11, $pop1 @@ -77,14 +77,14 @@ main: # @main # Child Loop BB1_6 Depth 3 # Child Loop BB1_9 Depth 3 # Child Loop BB1_12 Depth 3 - loop # label6: + loop # label6: i32.const $push32=, 4 i32.store 0($7), $pop32 i64.const $push31=, 4294967296 i64.store 0($11), $pop31 i64.const $push30=, 12884901890 i64.store 8($11), $pop30 - block + block i32.le_s $push3=, $6, $3 br_if 0, $pop3 # 0: down to label7 # BB#3: # %while.body.i.preheader @@ -96,7 +96,7 @@ main: # @main # Parent Loop BB1_1 Depth=1 # Parent Loop BB1_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label8: + loop # label8: i32.const $push36=, -4 i32.add $push35=, $10, $pop36 tee_local $push34=, $9=, $pop35 @@ -115,7 +115,7 @@ main: # @main # Parent Loop BB1_1 Depth=1 # Parent Loop BB1_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label9: + loop # label9: i32.const $push39=, 1 i32.add $push38=, $10, $pop39 tee_local $push37=, $10=, $pop38 @@ -136,8 +136,8 @@ main: # @main # Parent Loop BB1_1 Depth=1 # Parent Loop BB1_2 Depth=2 # => This Inner Loop Header: Depth=3 - block - loop # label11: + block + loop # label11: i32.const $push43=, 1 i32.add $push42=, $10, $pop43 tee_local $push41=, $10=, $pop42 @@ -156,7 +156,7 @@ main: # @main # in Loop: Header=BB1_2 Depth=2 end_loop end_block # label10: - block + block copy_local $10=, $5 i32.const $push50=, 1 i32.add $push49=, $6, $pop50 @@ -170,7 +170,7 @@ main: # @main # Parent Loop BB1_1 Depth=1 # Parent Loop BB1_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label13: + loop # label13: i32.load $push11=, 0($10) i32.ne $push12=, $9, $pop11 br_if 6, $pop12 # 6: down to label2 @@ -230,5 +230,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/loop-2.c.s b/test/torture-s/loop-2.c.s index fd127c298..566233733 100644 --- a/test/torture-s/loop-2.c.s +++ b/test/torture-s/loop-2.c.s @@ -9,7 +9,7 @@ f: # @f .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.eqz $push7=, $0 br_if 0, $pop7 # 0: down to label0 # BB#1: # %for.body.preheader @@ -17,7 +17,7 @@ f: # @f i32.const $1=, a .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push6=, -2 i32.add $push0=, $2, $pop6 i32.store 0($1), $pop0 @@ -64,5 +64,5 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-2b.c.s b/test/torture-s/loop-2b.c.s index 8974bb37e..ffb3f21fe 100644 --- a/test/torture-s/loop-2b.c.s +++ b/test/torture-s/loop-2b.c.s @@ -9,7 +9,7 @@ f: # @f .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 2147483647 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -22,7 +22,7 @@ f: # @f i32.add $0=, $pop4, $pop5 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push10=, -2 i32.store 0($0), $pop10 copy_local $push9=, $2 @@ -73,5 +73,5 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-2c.c.s b/test/torture-s/loop-2c.c.s index bb96f0bf5..5a1a1ea35 100644 --- a/test/torture-s/loop-2c.c.s +++ b/test/torture-s/loop-2c.c.s @@ -9,7 +9,7 @@ f: # @f .result i32 .local i32 # BB#0: # %entry - block + block i32.eqz $push12=, $0 br_if 0, $pop12 # 0: down to label0 # BB#1: # %for.body.preheader @@ -24,7 +24,7 @@ f: # @f i32.add $1=, $pop5, $pop6 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.store 0($2), $1 i32.const $push11=, -4 i32.add $2=, $2, $pop11 @@ -52,7 +52,7 @@ g: # @g .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.eqz $push11=, $0 br_if 0, $pop11 # 0: down to label2 # BB#1: # %for.body.preheader.i @@ -66,7 +66,7 @@ g: # @g i32.add $2=, $pop4, $pop5 .LBB1_2: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.store 0($1), $2 i32.const $push10=, -4 i32.add $1=, $1, $pop10 @@ -115,5 +115,5 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-2d.c.s b/test/torture-s/loop-2d.c.s index 1588ac5d0..0aeb9e7ef 100644 --- a/test/torture-s/loop-2d.c.s +++ b/test/torture-s/loop-2d.c.s @@ -9,7 +9,7 @@ f: # @f .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.eqz $push11=, $0 br_if 0, $pop11 # 0: down to label0 # BB#1: # %for.body.preheader @@ -23,7 +23,7 @@ f: # @f i32.add $2=, $pop4, $pop5 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.store 0($1), $2 i32.const $push10=, -4 i32.add $1=, $1, $pop10 @@ -72,5 +72,5 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-2e.c.s b/test/torture-s/loop-2e.c.s index a4dc71b06..a673547e1 100644 --- a/test/torture-s/loop-2e.c.s +++ b/test/torture-s/loop-2e.c.s @@ -144,4 +144,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/loop-2f.c.s b/test/torture-s/loop-2f.c.s index 360b376ec..48758c0d9 100644 --- a/test/torture-s/loop-2f.c.s +++ b/test/torture-s/loop-2f.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 39 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -34,7 +34,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push6=, 2147450880 i32.const $push5=, 65536 i32.const $push4=, 3 @@ -73,7 +73,7 @@ main: # @main .size .L.str, 10 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype open, i32, i32, i32 .functype mmap, i32, i32, i32, i32, i32, i32, i64 .functype exit, void, i32 diff --git a/test/torture-s/loop-2g.c.s b/test/torture-s/loop-2g.c.s index 3b4127228..2c5fb246c 100644 --- a/test/torture-s/loop-2g.c.s +++ b/test/torture-s/loop-2g.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 39 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -34,7 +34,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push6=, 2147450880 i32.const $push5=, 65536 i32.const $push4=, 3 @@ -73,7 +73,7 @@ main: # @main .size .L.str, 10 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype open, i32, i32, i32 .functype mmap, i32, i32, i32, i32, i32, i32, i64 .functype exit, void, i32 diff --git a/test/torture-s/loop-3.c.s b/test/torture-s/loop-3.c.s index 3ed92af70..9458d7445 100644 --- a/test/torture-s/loop-3.c.s +++ b/test/torture-s/loop-3.c.s @@ -64,7 +64,7 @@ main: # @main i32.const $push0=, 4 i32.add $push1=, $pop2, $pop0 i32.store n($pop5), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end i32.const $push6=, 0 @@ -88,6 +88,6 @@ n: .size n, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/loop-3b.c.s b/test/torture-s/loop-3b.c.s index ff85e5413..92f589eed 100644 --- a/test/torture-s/loop-3b.c.s +++ b/test/torture-s/loop-3b.c.s @@ -68,7 +68,7 @@ main: # @main i32.const $push0=, 4 i32.add $push1=, $pop2, $pop0 i32.store n($pop5), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end i32.const $push6=, 0 @@ -92,6 +92,6 @@ n: .size n, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/loop-3c.c.s b/test/torture-s/loop-3c.c.s index 49de60d75..6d29747b9 100644 --- a/test/torture-s/loop-3c.c.s +++ b/test/torture-s/loop-3c.c.s @@ -16,7 +16,7 @@ f: # @f i32.const $2=, 256 .LBB0_1: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push15=, 1 i32.shr_s $push14=, $2, $pop15 tee_local $push13=, $2=, $pop14 @@ -80,5 +80,5 @@ a: .size a, 1020 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-4.c.s b/test/torture-s/loop-4.c.s index 7308b6534..75ea2a51c 100644 --- a/test/torture-s/loop-4.c.s +++ b/test/torture-s/loop-4.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-4b.c.s b/test/torture-s/loop-4b.c.s index 6e966a16c..4fee8ecc3 100644 --- a/test/torture-s/loop-4b.c.s +++ b/test/torture-s/loop-4b.c.s @@ -28,5 +28,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-5.c.s b/test/torture-s/loop-5.c.s index 845dad723..17ec6be6c 100644 --- a/test/torture-s/loop-5.c.s +++ b/test/torture-s/loop-5.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32, i32 # BB#0: # %entry - block + block i32.const $push31=, 0 i32.load $push30=, t($pop31) tee_local $push29=, $0=, $pop30 @@ -119,6 +119,6 @@ t: .size t, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/loop-6.c.s b/test/torture-s/loop-6.c.s index 678c6b6a6..b2dca3bef 100644 --- a/test/torture-s/loop-6.c.s +++ b/test/torture-s/loop-6.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/loop-7.c.s b/test/torture-s/loop-7.c.s index efefae058..dcd179283 100644 --- a/test/torture-s/loop-7.c.s +++ b/test/torture-s/loop-7.c.s @@ -12,8 +12,8 @@ foo: # @foo i32.const $2=, 0 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.const $push10=, 1 i32.shl $push0=, $pop10, $2 i32.eq $push1=, $pop0, $0 @@ -32,7 +32,7 @@ foo: # @foo .LBB0_3: # %for.end end_loop end_block # label0: - block + block i32.const $push4=, -1 i32.le_s $push5=, $1, $pop4 br_if 0, $pop5 # 0: down to label2 @@ -63,6 +63,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/loop-8.c.s b/test/torture-s/loop-8.c.s index be6792739..71bce810f 100644 --- a/test/torture-s/loop-8.c.s +++ b/test/torture-s/loop-8.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i32, i32 # BB#0: # %entry - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %lor.lhs.false f64.load $push0=, 0($1) @@ -39,8 +39,8 @@ main: # @main i32.sub $push21=, $pop9, $pop10 tee_local $push20=, $1=, $pop21 i32.store __stack_pointer($pop11), $pop20 - block - block + block + block i32.const $push19=, 0 f64.load $push18=, a($pop19) tee_local $push17=, $0=, $pop18 @@ -101,6 +101,6 @@ a: .size a, 24 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/loop-9.c.s b/test/torture-s/loop-9.c.s index 6f5fedc05..785ff1768 100644 --- a/test/torture-s/loop-9.c.s +++ b/test/torture-s/loop-9.c.s @@ -28,4 +28,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/loop-ivopts-1.c.s b/test/torture-s/loop-ivopts-1.c.s index 2484b7e95..3669cbded 100644 --- a/test/torture-s/loop-ivopts-1.c.s +++ b/test/torture-s/loop-ivopts-1.c.s @@ -55,4 +55,4 @@ foo.tmp: .size foo.tmp, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/loop-ivopts-2.c.s b/test/torture-s/loop-ivopts-2.c.s index 4c5b920e5..25916b969 100644 --- a/test/torture-s/loop-ivopts-2.c.s +++ b/test/torture-s/loop-ivopts-2.c.s @@ -11,8 +11,8 @@ check: # @check i32.const $1=, 0 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.load $push6=, 0($0) i32.const $push14=, 8 i32.const $push13=, 7 @@ -67,7 +67,7 @@ main: # @main i32.const $1=, 0 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.add $push0=, $2, $1 i32.const $push29=, 8 i32.store 0($pop0), $pop29 @@ -84,7 +84,7 @@ main: # @main i32.const $1=, 0 .LBB1_3: # %for.body3 # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.add $push3=, $0, $1 i32.const $push34=, 9 i32.store 0($pop3), $pop34 @@ -154,8 +154,8 @@ main: # @main copy_local $0=, $2 .LBB1_5: # %for.body.i # =>This Inner Loop Header: Depth=1 - block - loop # label5: + block + loop # label5: i32.load $push12=, 0($0) i32.const $push66=, 8 i32.const $push65=, 7 @@ -198,5 +198,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/lshrdi-1.c.s b/test/torture-s/lshrdi-1.c.s index ab44d4d24..cfe5bc9af 100644 --- a/test/torture-s/lshrdi-1.c.s +++ b/test/torture-s/lshrdi-1.c.s @@ -12,8 +12,8 @@ main: # @main i32.const $2=, .Lswitch.table .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i64.const $push6=, -8690466092652643696 i64.shr_u $push0=, $pop6, $0 i64.load $push1=, 0($2) @@ -35,8 +35,8 @@ main: # @main i32.const $1=, .Lswitch.table .LBB0_4: # %constant_shift.exit # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.const $push12=, 1 i32.eqz $push18=, $pop12 br_if 1, $pop18 # 1: down to label2 @@ -138,6 +138,6 @@ main: # @main .size .Lswitch.table, 512 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/mayalias-1.c.s b/test/torture-s/mayalias-1.c.s index 07f133068..86518f49b 100644 --- a/test/torture-s/mayalias-1.c.s +++ b/test/torture-s/mayalias-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/mayalias-2.c.s b/test/torture-s/mayalias-2.c.s index 739f5ca7d..de9bb7684 100644 --- a/test/torture-s/mayalias-2.c.s +++ b/test/torture-s/mayalias-2.c.s @@ -27,4 +27,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/mayalias-3.c.s b/test/torture-s/mayalias-3.c.s index e8ed8bd26..68460c357 100644 --- a/test/torture-s/mayalias-3.c.s +++ b/test/torture-s/mayalias-3.c.s @@ -66,7 +66,7 @@ main: # @main i32.const $push11=, 12 i32.add $push12=, $0, $pop11 i32.store p($pop14), $pop12 - block + block i32.load $push2=, 12($0) i32.const $push13=, 10 i32.eq $push3=, $pop2, $pop13 @@ -96,5 +96,5 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/medce-1.c.s b/test/torture-s/medce-1.c.s index 408242887..0ef073d48 100644 --- a/test/torture-s/medce-1.c.s +++ b/test/torture-s/medce-1.c.s @@ -21,7 +21,7 @@ bar: # @bar foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push2=, 1 i32.ne $push0=, $0, $pop2 br_if 0, $pop0 # 0: down to label0 @@ -60,4 +60,4 @@ ok: .size ok, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/memcpy-1.c.s b/test/torture-s/memcpy-1.c.s index a19bd27fb..ae4f44a43 100644 --- a/test/torture-s/memcpy-1.c.s +++ b/test/torture-s/memcpy-1.c.s @@ -35,7 +35,7 @@ main: # @main i32.call $drop=, memset@FUNCTION, $1, $pop52, $pop51 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push41=, 348160 i32.add $push42=, $1, $pop41 i32.add $push2=, $pop42, $2 @@ -55,10 +55,10 @@ main: # @main i32.const $2=, 0 .LBB1_3: # %for.body6 # =>This Inner Loop Header: Depth=1 - block - block - block - loop # label4: + block + block + block + loop # label4: i32.add $push6=, $1, $2 i32.load8_u $push7=, 0($pop6) i32.const $push59=, 255 @@ -81,8 +81,8 @@ main: # @main i32.const $2=, 1 .LBB1_6: # %for.cond17 # =>This Inner Loop Header: Depth=1 - block - loop # label6: + block + loop # label6: i32.const $push65=, 2719 i32.gt_u $push11=, $2, $pop65 br_if 1, $pop11 # 1: down to label5 @@ -109,7 +109,7 @@ main: # @main i32.const $2=, 0 .LBB1_10: # %for.body35 # =>This Inner Loop Header: Depth=1 - loop # label7: + loop # label7: i32.add $push14=, $1, $2 i32.load8_u $push15=, 0($pop14) i32.const $push68=, 255 @@ -132,8 +132,8 @@ main: # @main i32.const $2=, 1 .LBB1_13: # %for.cond48 # =>This Inner Loop Header: Depth=1 - block - loop # label9: + block + loop # label9: i32.const $push73=, 348159 i32.gt_u $push20=, $2, $pop73 br_if 1, $pop20 # 1: down to label8 @@ -159,7 +159,7 @@ main: # @main i32.const $2=, 0 .LBB1_17: # %for.body66 # =>This Inner Loop Header: Depth=1 - loop # label10: + loop # label10: i32.add $push23=, $1, $2 i32.load8_u $push24=, 0($pop23) i32.const $push75=, 255 @@ -183,8 +183,8 @@ main: # @main i32.const $2=, 0 .LBB1_20: # %for.body85 # =>This Inner Loop Header: Depth=1 - block - loop # label12: + block + loop # label12: i32.add $push29=, $1, $2 i32.load8_u $push30=, 0($pop29) i32.const $push80=, 255 @@ -225,6 +225,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/memcpy-2.c.s b/test/torture-s/memcpy-2.c.s index 52ce4783d..0508de4a8 100644 --- a/test/torture-s/memcpy-2.c.s +++ b/test/torture-s/memcpy-2.c.s @@ -16,8 +16,8 @@ main: # @main # Child Loop BB0_4 Depth 4 # Child Loop BB0_7 Depth 4 # Child Loop BB0_11 Depth 4 - block - loop # label1: + block + loop # label1: i32.const $push44=, u1 i32.add $2=, $1, $pop44 i32.const $3=, 0 @@ -28,7 +28,7 @@ main: # @main # Child Loop BB0_4 Depth 4 # Child Loop BB0_7 Depth 4 # Child Loop BB0_11 Depth 4 - loop # label2: + loop # label2: i32.const $push46=, 65 i32.add $5=, $3, $pop46 i32.const $push45=, u2 @@ -41,7 +41,7 @@ main: # @main # Child Loop BB0_4 Depth 4 # Child Loop BB0_7 Depth 4 # Child Loop BB0_11 Depth 4 - loop # label3: + loop # label3: i32.const $push49=, u1 i32.const $push48=, 97 i32.const $push47=, 96 @@ -53,7 +53,7 @@ main: # @main # Parent Loop BB0_2 Depth=2 # Parent Loop BB0_3 Depth=3 # => This Inner Loop Header: Depth=4 - loop # label4: + loop # label4: i32.const $push60=, u2+96 i32.add $push3=, $7, $pop60 i32.const $push59=, 65 @@ -77,7 +77,7 @@ main: # @main end_loop i32.call $drop=, memcpy@FUNCTION, $2, $4, $6 i32.const $8=, u1 - block + block i32.const $push61=, 1 i32.lt_s $push4=, $1, $pop61 br_if 0, $pop4 # 0: down to label5 @@ -89,7 +89,7 @@ main: # @main # Parent Loop BB0_2 Depth=2 # Parent Loop BB0_3 Depth=3 # => This Inner Loop Header: Depth=4 - loop # label6: + loop # label6: i32.add $push5=, $9, $0 i32.load8_u $push6=, 0($pop5) i32.const $push62=, 97 @@ -116,7 +116,7 @@ main: # @main # Parent Loop BB0_2 Depth=2 # Parent Loop BB0_3 Depth=3 # => This Inner Loop Header: Depth=4 - loop # label7: + loop # label7: i32.add $push13=, $8, $9 i32.load8_u $push14=, 0($pop13) i32.const $push72=, 65 @@ -260,6 +260,6 @@ u2: .size u2, 96 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/memcpy-bi.c.s b/test/torture-s/memcpy-bi.c.s index 43f3eae94..1c9ac4474 100644 --- a/test/torture-s/memcpy-bi.c.s +++ b/test/torture-s/memcpy-bi.c.s @@ -7,7 +7,7 @@ check: # @check .param i32, i32, i32 # BB#0: # %entry - block + block i32.call $push0=, memcmp@FUNCTION, $0, $1, $2 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -31,7 +31,7 @@ main: # @main i32.const $0=, 0 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push304=, src i32.add $push24=, $0, $pop304 i32.const $push303=, 26 @@ -52,7 +52,7 @@ main: # @main i32.load16_u $push306=, src($pop307) tee_local $push305=, $0=, $pop306 i32.store16 dst($pop308), $pop305 - block + block i32.ne $push28=, $0, $0 br_if 0, $pop28 # 0: down to label2 # BB#3: # %check.exit13 @@ -1039,6 +1039,6 @@ dst: .size dst, 80 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/memset-1.c.s b/test/torture-s/memset-1.c.s index 0e8094154..98bc3ad03 100644 --- a/test/torture-s/memset-1.c.s +++ b/test/torture-s/memset-1.c.s @@ -18,8 +18,8 @@ main: # @main # Child Loop BB0_24 Depth 3 # Child Loop BB0_36 Depth 3 # Child Loop BB0_40 Depth 3 - block - loop # label1: + block + loop # label1: i32.const $push96=, u i32.add $2=, $1, $pop96 i32.const $3=, 1 @@ -32,7 +32,7 @@ main: # @main # Child Loop BB0_24 Depth 3 # Child Loop BB0_36 Depth 3 # Child Loop BB0_40 Depth 3 - loop # label2: + loop # label2: i32.const $5=, u i32.const $push103=, u i32.const $push102=, 97 @@ -40,7 +40,7 @@ main: # @main i32.call $drop=, memset@FUNCTION, $pop103, $pop102, $pop101 i32.const $push100=, 0 i32.call $0=, memset@FUNCTION, $2, $pop100, $3 - block + block i32.const $push99=, 1 i32.lt_s $push98=, $1, $pop99 tee_local $push97=, $4=, $pop98 @@ -52,7 +52,7 @@ main: # @main # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label4: + loop # label4: i32.const $push105=, u i32.add $push0=, $6, $pop105 i32.load8_u $push1=, 0($pop0) @@ -79,7 +79,7 @@ main: # @main # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label5: + loop # label5: i32.add $push4=, $5, $6 i32.load8_u $push5=, 0($pop4) br_if 3, $pop5 # 3: down to label0 @@ -161,7 +161,7 @@ main: # @main i32.load8_u $push30=, A($pop130) i32.call $drop=, memset@FUNCTION, $0, $pop30, $3 i32.const $5=, u - block + block br_if 0, $4 # 0: down to label6 # BB#19: # %for.body55.preheader # in Loop: Header=BB0_2 Depth=2 @@ -170,7 +170,7 @@ main: # @main # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label7: + loop # label7: i32.const $push132=, u i32.add $push31=, $6, $pop132 i32.load8_u $push32=, 0($pop31) @@ -197,7 +197,7 @@ main: # @main # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label8: + loop # label8: i32.add $push35=, $5, $6 i32.load8_u $push36=, 0($pop35) i32.const $push137=, 65 @@ -280,7 +280,7 @@ main: # @main i32.const $push158=, 66 i32.call $drop=, memset@FUNCTION, $0, $pop158, $3 i32.const $5=, u - block + block br_if 0, $4 # 0: down to label9 # BB#35: # %for.body100.preheader # in Loop: Header=BB0_2 Depth=2 @@ -289,7 +289,7 @@ main: # @main # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label10: + loop # label10: i32.const $push160=, u i32.add $push62=, $6, $pop160 i32.load8_u $push63=, 0($pop62) @@ -316,7 +316,7 @@ main: # @main # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label11: + loop # label11: i32.add $push66=, $5, $6 i32.load8_u $push67=, 0($pop66) i32.const $push165=, 66 @@ -440,6 +440,6 @@ u: .size u, 96 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/memset-2.c.s b/test/torture-s/memset-2.c.s index 8b24b1300..fe18561ac 100644 --- a/test/torture-s/memset-2.c.s +++ b/test/torture-s/memset-2.c.s @@ -24,8 +24,8 @@ check: # @check .local i32, i32 # BB#0: # %entry i32.const $3=, u - block - block + block + block i32.const $push27=, 1 i32.lt_s $push0=, $0, $pop27 br_if 0, $pop0 # 0: down to label1 @@ -33,7 +33,7 @@ check: # @check i32.const $4=, 0 .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push29=, u i32.add $push1=, $4, $pop29 i32.load8_u $push2=, 0($pop1) @@ -53,7 +53,7 @@ check: # @check i32.add $3=, $4, $pop5 .LBB1_5: # %for.cond3.preheader end_block # label1: - block + block i32.const $push33=, 1 i32.lt_s $push6=, $1, $pop33 br_if 0, $pop6 # 0: down to label3 @@ -61,7 +61,7 @@ check: # @check i32.const $4=, 0 .LBB1_7: # %for.body6 # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: i32.add $push7=, $3, $4 i32.load8_s $push8=, 0($pop7) i32.ne $push9=, $pop8, $2 @@ -138,7 +138,7 @@ main: # @main i32.const $5=, 0 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.const $push59=, u i32.const $push58=, 97 i32.const $push57=, 31 @@ -172,7 +172,7 @@ main: # @main i32.const $5=, 0 .LBB2_3: # %for.body18 # =>This Inner Loop Header: Depth=1 - loop # label6: + loop # label6: i32.const $push78=, u i32.const $push77=, 97 i32.const $push76=, 31 @@ -208,7 +208,7 @@ main: # @main i32.const $5=, 0 .LBB2_5: # %for.body44 # =>This Inner Loop Header: Depth=1 - loop # label7: + loop # label7: i32.const $push104=, u i32.const $push103=, 97 i32.const $push102=, 31 @@ -253,7 +253,7 @@ main: # @main i32.const $5=, 0 .LBB2_7: # %for.body70 # =>This Inner Loop Header: Depth=1 - loop # label8: + loop # label8: i32.const $push123=, u i32.const $push122=, 97 i32.const $push121=, 31 @@ -289,7 +289,7 @@ main: # @main i32.const $5=, 0 .LBB2_9: # %for.body96 # =>This Inner Loop Header: Depth=1 - loop # label9: + loop # label9: i32.const $push149=, u i32.const $push148=, 97 i32.const $push147=, 31 @@ -334,7 +334,7 @@ main: # @main i32.const $5=, 0 .LBB2_11: # %for.body122 # =>This Inner Loop Header: Depth=1 - loop # label10: + loop # label10: i32.const $push176=, u i32.const $push175=, 97 i32.const $push174=, 31 @@ -381,7 +381,7 @@ main: # @main i32.const $5=, 0 .LBB2_13: # %for.body148 # =>This Inner Loop Header: Depth=1 - loop # label11: + loop # label11: i32.const $push208=, u i32.const $push207=, 97 i32.const $push206=, 31 @@ -436,7 +436,7 @@ main: # @main i32.const $5=, 0 .LBB2_15: # %for.body174 # =>This Inner Loop Header: Depth=1 - loop # label12: + loop # label12: i32.const $push230=, u i32.const $push229=, 97 i32.const $push228=, 31 @@ -476,7 +476,7 @@ main: # @main i32.const $5=, 0 .LBB2_17: # %for.body200 # =>This Inner Loop Header: Depth=1 - loop # label13: + loop # label13: i32.const $push263=, u i32.const $push262=, 97 i32.const $push261=, 31 @@ -530,7 +530,7 @@ main: # @main i32.const $5=, 0 .LBB2_19: # %for.body226 # =>This Inner Loop Header: Depth=1 - loop # label14: + loop # label14: i32.const $push297=, u i32.const $push296=, 97 i32.const $push295=, 31 @@ -586,7 +586,7 @@ main: # @main i32.const $5=, 0 .LBB2_21: # %for.body252 # =>This Inner Loop Header: Depth=1 - loop # label15: + loop # label15: i32.const $push336=, u i32.const $push335=, 97 i32.const $push334=, 31 @@ -650,7 +650,7 @@ main: # @main i32.const $5=, 0 .LBB2_23: # %for.body278 # =>This Inner Loop Header: Depth=1 - loop # label16: + loop # label16: i32.const $push363=, u i32.const $push362=, 97 i32.const $push361=, 31 @@ -698,7 +698,7 @@ main: # @main i32.const $5=, 0 .LBB2_25: # %for.body304 # =>This Inner Loop Header: Depth=1 - loop # label17: + loop # label17: i32.const $push397=, u i32.const $push396=, 97 i32.const $push395=, 31 @@ -755,7 +755,7 @@ main: # @main i32.const $5=, 0 .LBB2_27: # %for.body330 # =>This Inner Loop Header: Depth=1 - loop # label18: + loop # label18: i32.const $push432=, u i32.const $push431=, 97 i32.const $push430=, 31 @@ -814,7 +814,7 @@ main: # @main i32.const $5=, 0 .LBB2_29: # %for.body356 # =>This Inner Loop Header: Depth=1 - loop # label19: + loop # label19: i32.const $push472=, u i32.const $push471=, 97 i32.const $push470=, 31 @@ -901,6 +901,6 @@ u: .size u, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/memset-3.c.s b/test/torture-s/memset-3.c.s index 3981ea57d..b016c3a10 100644 --- a/test/torture-s/memset-3.c.s +++ b/test/torture-s/memset-3.c.s @@ -24,8 +24,8 @@ check: # @check .local i32, i32 # BB#0: # %entry i32.const $3=, u - block - block + block + block i32.const $push27=, 1 i32.lt_s $push0=, $0, $pop27 br_if 0, $pop0 # 0: down to label1 @@ -33,7 +33,7 @@ check: # @check i32.const $4=, 0 .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push29=, u i32.add $push1=, $4, $pop29 i32.load8_u $push2=, 0($pop1) @@ -53,7 +53,7 @@ check: # @check i32.add $3=, $4, $pop5 .LBB1_5: # %for.cond3.preheader end_block # label1: - block + block i32.const $push33=, 1 i32.lt_s $push6=, $1, $pop33 br_if 0, $pop6 # 0: down to label3 @@ -61,7 +61,7 @@ check: # @check i32.const $4=, 0 .LBB1_7: # %for.body6 # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: i32.add $push7=, $3, $4 i32.load8_s $push8=, 0($pop7) i32.ne $push9=, $pop8, $2 @@ -141,8 +141,8 @@ main: # @main # Child Loop BB2_3 Depth 2 # Child Loop BB2_16 Depth 2 # Child Loop BB2_29 Depth 2 - block - loop # label6: + block + loop # label6: i32.const $push83=, u i32.const $push82=, 97 i32.const $push81=, 31 @@ -150,7 +150,7 @@ main: # @main i32.const $push80=, 0 i32.call $0=, memset@FUNCTION, $pop0, $pop80, $3 i32.const $2=, u - block + block i32.const $push79=, 1 i32.lt_s $push78=, $3, $pop79 tee_local $push77=, $1=, $pop78 @@ -161,7 +161,7 @@ main: # @main .LBB2_3: # %for.body6.i # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label8: + loop # label8: i32.add $push1=, $2, $0 i32.load8_u $push2=, 0($pop1) br_if 3, $pop2 # 3: down to label5 @@ -232,7 +232,7 @@ main: # @main i32.const $push95=, 0 i32.load8_u $push20=, A($pop95) i32.call $drop=, memset@FUNCTION, $pop96, $pop20, $3 - block + block br_if 0, $1 # 0: down to label9 # BB#15: # %for.body6.i241.preheader # in Loop: Header=BB2_1 Depth=1 @@ -240,7 +240,7 @@ main: # @main .LBB2_16: # %for.body6.i241 # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label10: + loop # label10: i32.add $push21=, $2, $0 i32.load8_u $push22=, 0($pop21) i32.const $push97=, 65 @@ -312,7 +312,7 @@ main: # @main i32.const $push110=, u i32.const $push109=, 66 i32.call $drop=, memset@FUNCTION, $pop110, $pop109, $3 - block + block br_if 0, $1 # 0: down to label11 # BB#28: # %for.body6.i278.preheader # in Loop: Header=BB2_1 Depth=1 @@ -320,7 +320,7 @@ main: # @main .LBB2_29: # %for.body6.i278 # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label12: + loop # label12: i32.add $push41=, $2, $0 i32.load8_u $push42=, 0($pop41) i32.const $push111=, 66 @@ -399,7 +399,7 @@ main: # @main i32.const $3=, 0 .LBB2_42: # %for.body13 # =>This Inner Loop Header: Depth=1 - loop # label13: + loop # label13: i32.const $push143=, u i32.const $push142=, 97 i32.const $push141=, 31 @@ -432,7 +432,7 @@ main: # @main i32.const $3=, 0 .LBB2_44: # %for.body33 # =>This Inner Loop Header: Depth=1 - loop # label14: + loop # label14: i32.const $push160=, u i32.const $push159=, 97 i32.const $push158=, 31 @@ -465,7 +465,7 @@ main: # @main i32.const $3=, 0 .LBB2_46: # %for.body53 # =>This Inner Loop Header: Depth=1 - loop # label15: + loop # label15: i32.const $push177=, u i32.const $push176=, 97 i32.const $push175=, 31 @@ -498,7 +498,7 @@ main: # @main i32.const $3=, 0 .LBB2_48: # %for.body73 # =>This Inner Loop Header: Depth=1 - loop # label16: + loop # label16: i32.const $push194=, u i32.const $push193=, 97 i32.const $push192=, 31 @@ -531,7 +531,7 @@ main: # @main i32.const $3=, 0 .LBB2_50: # %for.body93 # =>This Inner Loop Header: Depth=1 - loop # label17: + loop # label17: i32.const $push211=, u i32.const $push210=, 97 i32.const $push209=, 31 @@ -564,7 +564,7 @@ main: # @main i32.const $3=, 0 .LBB2_52: # %for.body113 # =>This Inner Loop Header: Depth=1 - loop # label18: + loop # label18: i32.const $push228=, u i32.const $push227=, 97 i32.const $push226=, 31 @@ -597,7 +597,7 @@ main: # @main i32.const $3=, 0 .LBB2_54: # %for.body133 # =>This Inner Loop Header: Depth=1 - loop # label19: + loop # label19: i32.const $push245=, u i32.const $push244=, 97 i32.const $push243=, 31 @@ -654,6 +654,6 @@ u: .size u, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/mod-1.c.s b/test/torture-s/mod-1.c.s index 6727e6f48..0da274cb2 100644 --- a/test/torture-s/mod-1.c.s +++ b/test/torture-s/mod-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.rem_s $push0=, $0, $1 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -36,6 +36,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/mode-dependent-address.c.s b/test/torture-s/mode-dependent-address.c.s index e4389b0a8..b77d7990a 100644 --- a/test/torture-s/mode-dependent-address.c.s +++ b/test/torture-s/mode-dependent-address.c.s @@ -11,7 +11,7 @@ f883b: # @f883b i32.const $6=, 0 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.add $push12=, $0, $6 i32.load16_s $push29=, 0($1) tee_local $push28=, $5=, $pop29 @@ -68,7 +68,7 @@ main: # @main i32.const $1=, arg3 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push34=, arg4 i32.add $push0=, $4, $pop34 i32.store8 0($pop0), $4 @@ -101,7 +101,7 @@ main: # @main i32.const $1=, -192 .LBB1_3: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push50=, arg1+192 i32.add $push4=, $1, $pop50 i32.load16_s $push49=, 0($pop4) @@ -142,8 +142,8 @@ main: # @main i32.const $3=, .Lmain.correct .LBB1_5: # %for.body10 # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: i32.const $push51=, result i32.add $push17=, $4, $pop51 i32.load8_s $push18=, 0($pop17) @@ -320,5 +320,5 @@ result: .size result, 96 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/multdi-1.c.s b/test/torture-s/multdi-1.c.s index 08367d7f1..910023f02 100644 --- a/test/torture-s/multdi-1.c.s +++ b/test/torture-s/multdi-1.c.s @@ -42,4 +42,4 @@ mpy_res: .size mpy_res, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/multi-ix.c.s b/test/torture-s/multi-ix.c.s index 207512a7f..d53457d57 100644 --- a/test/torture-s/multi-ix.c.s +++ b/test/torture-s/multi-ix.c.s @@ -15,14 +15,14 @@ f: # @f i32.sub $push666=, $pop191, $pop192 tee_local $push665=, $41=, $pop666 i32.store __stack_pointer($pop193), $pop665 - block + block i32.const $push0=, 1 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 # BB#1: # %for.body.lr.ph .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push197=, 320 i32.add $push198=, $41, $pop197 i32.const $push820=, 156 @@ -1063,7 +1063,7 @@ s: # @s i32.sub $push7=, $pop4, $pop5 tee_local $push6=, $2=, $pop7 i32.store 12($pop6), $1 - block + block i32.eqz $push16=, $0 br_if 0, $pop16 # 0: down to label2 # BB#1: # %while.body.preheader @@ -1071,7 +1071,7 @@ s: # @s i32.add $0=, $0, $pop8 .LBB1_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.load $push15=, 12($2) tee_local $push14=, $1=, $pop15 i32.const $push13=, 4 @@ -1109,14 +1109,14 @@ z: # @z tee_local $push8=, $3=, $pop9 i32.store __stack_pointer($pop4), $pop8 i32.store 12($3), $1 - block + block i32.eqz $push18=, $0 br_if 0, $pop18 # 0: down to label4 # BB#1: # %while.body.preheader i32.load $1=, 12($3) .LBB2_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.const $push17=, 4 i32.add $push16=, $1, $pop17 tee_local $push15=, $2=, $pop16 @@ -1164,8 +1164,8 @@ c: # @c i32.add $1=, $pop2, $pop14 .LBB3_1: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label7: + block + loop # label7: i32.eqz $push24=, $0 br_if 1, $pop24 # 1: down to label6 # BB#2: # %while.body @@ -1218,6 +1218,6 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/nestfunc-4.c.s b/test/torture-s/nestfunc-4.c.s index c883aa553..3e757faf3 100644 --- a/test/torture-s/nestfunc-4.c.s +++ b/test/torture-s/nestfunc-4.c.s @@ -60,7 +60,7 @@ bar: # @bar .local i32, i32 # BB#0: # %entry i32.const $1=, -42 - block + block i32.const $push0=, 0 i32.load $push5=, level($pop0) tee_local $push4=, $0=, $pop5 @@ -87,5 +87,5 @@ level: .size level, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/p18298.c.s b/test/torture-s/p18298.c.s index c6cafdd90..9a91bd617 100644 --- a/test/torture-s/p18298.c.s +++ b/test/torture-s/p18298.c.s @@ -23,7 +23,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load8_u $push0=, s($pop1) i32.eqz $push5=, $pop0 @@ -50,5 +50,5 @@ s: .size s, 2048 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/packed-1.c.s b/test/torture-s/packed-1.c.s index adf9d114c..cf03abef9 100644 --- a/test/torture-s/packed-1.c.s +++ b/test/torture-s/packed-1.c.s @@ -13,7 +13,7 @@ f: # @f i32.load16_u $push4=, x1($pop5) tee_local $push3=, $0=, $pop4 i32.store16 t($pop0), $pop3 - block + block i32.const $push1=, 17 i32.ne $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -61,6 +61,6 @@ t: .size t, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/packed-2.c.s b/test/torture-s/packed-2.c.s index f186aa8f7..1b5fe0a76 100644 --- a/test/torture-s/packed-2.c.s +++ b/test/torture-s/packed-2.c.s @@ -26,4 +26,4 @@ t: .size t, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pending-4.c.s b/test/torture-s/pending-4.c.s index 7c217469a..4610c1a9f 100644 --- a/test/torture-s/pending-4.c.s +++ b/test/torture-s/pending-4.c.s @@ -26,8 +26,8 @@ main: # @main i32.const $3=, 0 .LBB1_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label0: - block + loop # label0: + block i32.const $push8=, 1 i32.ne $push0=, $4, $pop8 br_if 0, $pop0 # 0: down to label1 @@ -41,7 +41,7 @@ main: # @main .LBB1_3: # %for.cond # in Loop: Header=BB1_1 Depth=1 end_block # label1: - block + block i32.eqz $push11=, $4 br_if 0, $pop11 # 0: down to label2 # BB#4: # %if.else @@ -54,7 +54,7 @@ main: # @main .LBB1_5: # %for.end end_block # label2: end_loop - block + block i32.const $push1=, 1 i32.ne $push2=, $2, $pop1 br_if 0, $pop2 # 0: down to label3 @@ -75,6 +75,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/postmod-1.c.s b/test/torture-s/postmod-1.c.s index e633031f3..77f1bae9f 100644 --- a/test/torture-s/postmod-1.c.s +++ b/test/torture-s/postmod-1.c.s @@ -15,7 +15,7 @@ foo: # @foo i32.const $17=, 0 .LBB0_1: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.add $push269=, $2, $17 tee_local $push268=, $0=, $pop269 i32.const $push267=, array5 @@ -571,4 +571,4 @@ vol: .size vol, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr15262-1.c.s b/test/torture-s/pr15262-1.c.s index b9d2273b4..ca52d922b 100644 --- a/test/torture-s/pr15262-1.c.s +++ b/test/torture-s/pr15262-1.c.s @@ -27,4 +27,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr15262-2.c.s b/test/torture-s/pr15262-2.c.s index 8b8109197..131bab9f9 100644 --- a/test/torture-s/pr15262-2.c.s +++ b/test/torture-s/pr15262-2.c.s @@ -56,4 +56,4 @@ X: .size X, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr15262.c.s b/test/torture-s/pr15262.c.s index 63cd0323f..2588035fc 100644 --- a/test/torture-s/pr15262.c.s +++ b/test/torture-s/pr15262.c.s @@ -57,4 +57,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr15296.c.s b/test/torture-s/pr15296.c.s index a758197e9..a0aef0cd9 100644 --- a/test/torture-s/pr15296.c.s +++ b/test/torture-s/pr15296.c.s @@ -7,22 +7,22 @@ f: # @f .param i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.ge_s $push1=, $3, $4 br_if 0, $pop1 # 0: down to label0 .LBB0_1: # %l0 # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: br 0 # 0: up to label1 .LBB0_2: # %if.end.split end_loop end_block # label0: i32.const $4=, 0 - block - block - block - block - block + block + block + block + block + block i32.eqz $push16=, $3 br_if 0, $pop16 # 0: down to label6 # BB#3: # %if.end3 @@ -133,7 +133,7 @@ main: # @main i32.const $push41=, 32 i32.add $push42=, $1, $pop41 call f@FUNCTION, $pop45, $pop40, $1, $pop10, $pop9, $pop42 - block + block i32.load $push11=, 12($1) i32.const $push43=, 32 i32.add $push44=, $1, $pop43 @@ -208,6 +208,6 @@ main: # @main .size .Lmain.s, 20 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr16790-1.c.s b/test/torture-s/pr16790-1.c.s index 03d308f59..46e3b9a0a 100644 --- a/test/torture-s/pr16790-1.c.s +++ b/test/torture-s/pr16790-1.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr17078-1.c.s b/test/torture-s/pr17078-1.c.s index 147a04660..4093850f6 100644 --- a/test/torture-s/pr17078-1.c.s +++ b/test/torture-s/pr17078-1.c.s @@ -28,4 +28,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr17133.c.s b/test/torture-s/pr17133.c.s index a6b3b3871..ca60c7da8 100644 --- a/test/torture-s/pr17133.c.s +++ b/test/torture-s/pr17133.c.s @@ -18,7 +18,7 @@ pure_alloc: # @pure_alloc i32.store foo($pop0), $pop10 i32.const $push9=, 0 i32.load $0=, bar($pop9) - block + block i32.const $push8=, 0 i32.load $push7=, baz($pop8) tee_local $push6=, $1=, $pop7 @@ -29,7 +29,7 @@ pure_alloc: # @pure_alloc i32.gt_u $3=, $1, $pop16 .LBB0_2: # %if.end # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.eqz $push18=, $3 br_if 0, $pop18 # 0: up to label1 # BB#3: # %while.cond.if.then_crit_edge @@ -63,9 +63,9 @@ main: # @main i32.add $push11=, $pop1, $pop12 tee_local $push10=, $0=, $pop11 i32.store foo($pop0), $pop10 - block - block - block + block + block + block i32.const $push9=, 0 i32.load $push8=, baz($pop9) tee_local $push7=, $1=, $pop8 @@ -92,7 +92,7 @@ main: # @main .LBB1_6: # %if.end.i # =>This Inner Loop Header: Depth=1 end_block # label2: - loop # label5: + loop i32 # label5: br 0 # 0: up to label5 .LBB1_7: end_loop @@ -128,5 +128,5 @@ baz: .size baz, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr17252.c.s b/test/torture-s/pr17252.c.s index c3ebbfbc9..fcf861ecf 100644 --- a/test/torture-s/pr17252.c.s +++ b/test/torture-s/pr17252.c.s @@ -13,7 +13,7 @@ main: # @main i32.const $push6=, 0 i32.const $push1=, a+1 i32.store8 a($pop6), $pop1 - block + block i32.const $push5=, 0 i32.load $push2=, a($pop5) i32.const $push4=, a @@ -40,5 +40,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr19005.c.s b/test/torture-s/pr19005.c.s index a5cb70bba..df6193017 100644 --- a/test/torture-s/pr19005.c.s +++ b/test/torture-s/pr19005.c.s @@ -17,16 +17,16 @@ bar: # @bar i32.add $push3=, $4, $pop2 i32.const $push14=, 255 i32.and $4=, $pop3, $pop14 - block - block - block + block + block + block i32.const $push13=, 0 i32.load $push12=, s($pop13) tee_local $push11=, $2=, $pop12 i32.eqz $push17=, $pop11 br_if 0, $pop17 # 0: down to label2 # BB#1: # %if.else - block + block i32.ne $push4=, $3, $1 br_if 0, $pop4 # 0: down to label3 # BB#2: # %if.else @@ -82,17 +82,17 @@ foo: # @foo i32.add $push4=, $4, $pop19 i32.const $push18=, 255 i32.and $4=, $pop4, $pop18 - block - block - block - block + block + block + block + block i32.const $push17=, 0 i32.load $push16=, s($pop17) tee_local $push15=, $0=, $pop16 i32.eqz $push31=, $pop15 br_if 0, $pop31 # 0: down to label7 # BB#1: # %if.else.i - block + block i32.ne $push25=, $3, $2 tee_local $push24=, $5=, $pop25 br_if 0, $pop24 # 0: down to label8 @@ -163,7 +163,7 @@ main: # @main i32.store v($pop4), $pop3 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label9: + loop # label9: i32.call $drop=, foo@FUNCTION, $0 i32.const $push10=, 0 i32.const $push9=, 0 @@ -202,5 +202,5 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr19449.c.s b/test/torture-s/pr19449.c.s index 1d5a48512..3b03dfc37 100644 --- a/test/torture-s/pr19449.c.s +++ b/test/torture-s/pr19449.c.s @@ -21,7 +21,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push5=, 0 i32.load $push1=, y($pop5) br_if 0, $pop1 # 0: down to label0 @@ -61,5 +61,5 @@ y: .size y, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr19515.c.s b/test/torture-s/pr19515.c.s index a23eca258..8c4167aea 100644 --- a/test/torture-s/pr19515.c.s +++ b/test/torture-s/pr19515.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr19606.c.s b/test/torture-s/pr19606.c.s index 1a82c93da..421e4cd2e 100644 --- a/test/torture-s/pr19606.c.s +++ b/test/torture-s/pr19606.c.s @@ -40,7 +40,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load8_s $push11=, a($pop0) tee_local $push10=, $0=, $pop11 @@ -76,6 +76,6 @@ a: .size a, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr19687.c.s b/test/torture-s/pr19687.c.s index 22662868d..624e4fa0e 100644 --- a/test/torture-s/pr19687.c.s +++ b/test/torture-s/pr19687.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr19689.c.s b/test/torture-s/pr19689.c.s index dac8c10fb..6f3e2c625 100644 --- a/test/torture-s/pr19689.c.s +++ b/test/torture-s/pr19689.c.s @@ -52,4 +52,4 @@ f: .size f, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr20100-1.c.s b/test/torture-s/pr20100-1.c.s index 76a6023c3..c60167d2e 100644 --- a/test/torture-s/pr20100-1.c.s +++ b/test/torture-s/pr20100-1.c.s @@ -39,7 +39,7 @@ get_n: # @get_n .local i32, i32, i32, i32 # BB#0: # %entry i32.const $3=, 0 - block + block i32.const $push17=, 0 i32.load16_u $push16=, p($pop17) tee_local $push15=, $0=, $pop16 @@ -56,8 +56,8 @@ get_n: # @get_n i32.const $3=, 0 .LBB1_2: # %while.body # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.const $push28=, 0 i32.const $push27=, 65535 i32.and $push26=, $2, $pop27 @@ -140,5 +140,5 @@ e: .size e, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr20187-1.c.s b/test/torture-s/pr20187-1.c.s index 6d6d974f2..ae442e893 100644 --- a/test/torture-s/pr20187-1.c.s +++ b/test/torture-s/pr20187-1.c.s @@ -70,4 +70,4 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr20466-1.c.s b/test/torture-s/pr20466-1.c.s index 601e4b808..30b6f7de3 100644 --- a/test/torture-s/pr20466-1.c.s +++ b/test/torture-s/pr20466-1.c.s @@ -67,7 +67,7 @@ main: # @main i32.const $push38=, 4 i32.add $push39=, $0, $pop38 i32.call $drop=, f@FUNCTION, $pop33, $pop35, $pop37, $pop39, $0 - block + block i32.load $push9=, 28($0) i32.const $push44=, 66 i32.ne $push10=, $pop9, $pop44 @@ -113,6 +113,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr20527-1.c.s b/test/torture-s/pr20527-1.c.s index 533725eda..b8b7ea549 100644 --- a/test/torture-s/pr20527-1.c.s +++ b/test/torture-s/pr20527-1.c.s @@ -8,7 +8,7 @@ f: # @f .param i32, i32, i32, i32 .local i32 # BB#0: # %entry - block + block i32.gt_s $push0=, $2, $3 br_if 0, $pop0 # 0: down to label0 # BB#1: # %for.body.preheader @@ -24,7 +24,7 @@ f: # @f i32.const $1=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load $push5=, 0($2) i32.const $push21=, -4 i32.add $push3=, $2, $pop21 @@ -73,7 +73,7 @@ main: # @main i32.const $push1=, 0 i32.const $push0=, 2 call f@FUNCTION, $pop18, $pop2, $pop1, $pop0 - block + block i32.load $push4=, 4($0) i32.const $push3=, 3 i32.ne $push5=, $pop4, $pop3 @@ -113,6 +113,6 @@ b: .size b, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr20601-1.c.s b/test/torture-s/pr20601-1.c.s index a20b711bc..84eeb6ee6 100644 --- a/test/torture-s/pr20601-1.c.s +++ b/test/torture-s/pr20601-1.c.s @@ -8,7 +8,7 @@ foo: # @foo # BB#0: # %entry .LBB0_1: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: br 0 # 0: up to label0 .LBB0_2: end_loop @@ -55,12 +55,12 @@ main: # @main i32.const $3=, 1 .LBB2_1: # %land.rhs.i # =>This Inner Loop Header: Depth=1 - block - block - block - block - block - loop # label6: + block + block + block + block + block + loop # label6: i32.load $push38=, 0($1) tee_local $push37=, $2=, $pop38 i32.load8_u $push1=, 0($pop37) @@ -69,7 +69,7 @@ main: # @main br_if 1, $pop2 # 1: down to label5 # BB#2: # %while.body.i # in Loop: Header=BB2_1 Depth=1 - block + block i32.load8_s $push40=, 1($2) tee_local $push39=, $4=, $pop40 i32.eqz $push83=, $pop39 @@ -81,10 +81,10 @@ main: # @main .LBB2_4: # %if.end.i # in Loop: Header=BB2_1 Depth=1 end_block # label7: - block - block - block - block + block + block + block + block i32.const $push41=, 80 i32.eq $push4=, $4, $pop41 br_if 0, $pop4 # 0: down to label11 @@ -178,7 +178,7 @@ main: # @main i32.const $push71=, 0 i32.const $push70=, .L.str.4 i32.store t($pop71), $pop70 - block + block i32.const $push18=, 512 i32.and $push19=, $3, $pop18 i32.eqz $push85=, $pop19 @@ -197,7 +197,7 @@ main: # @main i32.const $4=, 4 .LBB2_17: # %for.cond.i # =>This Inner Loop Header: Depth=1 - loop # label13: + loop # label13: i32.const $push81=, f i32.add $push22=, $4, $pop81 i32.add $push23=, $1, $4 @@ -336,6 +336,6 @@ f: .size f, 64 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr20621-1.c.s b/test/torture-s/pr20621-1.c.s index 8c90de5cb..7420f6ce5 100644 --- a/test/torture-s/pr20621-1.c.s +++ b/test/torture-s/pr20621-1.c.s @@ -44,4 +44,4 @@ gb: .size gb, 65536 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr21173.c.s b/test/torture-s/pr21173.c.s index 26d428820..68d979458 100644 --- a/test/torture-s/pr21173.c.s +++ b/test/torture-s/pr21173.c.s @@ -32,7 +32,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push4=, 0 i32.load $push1=, a($pop4) i32.const $push3=, 0 @@ -68,5 +68,5 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr21331.c.s b/test/torture-s/pr21331.c.s index 2da59796b..4e9cfada9 100644 --- a/test/torture-s/pr21331.c.s +++ b/test/torture-s/pr21331.c.s @@ -40,4 +40,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr21964-1.c.s b/test/torture-s/pr21964-1.c.s index e4cd6c634..02246cfa0 100644 --- a/test/torture-s/pr21964-1.c.s +++ b/test/torture-s/pr21964-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32 # BB#0: # %entry - block + block i32.eqz $push1=, $1 br_if 0, $pop1 # 0: down to label0 # BB#1: # %entry @@ -40,6 +40,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/pr22061-1.c.s b/test/torture-s/pr22061-1.c.s index e5ffbf7c5..e87159309 100644 --- a/test/torture-s/pr22061-1.c.s +++ b/test/torture-s/pr22061-1.c.s @@ -56,5 +56,5 @@ N: .size N, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr22061-2.c.s b/test/torture-s/pr22061-2.c.s index 25b3273b0..b16c424d5 100644 --- a/test/torture-s/pr22061-2.c.s +++ b/test/torture-s/pr22061-2.c.s @@ -24,5 +24,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr22098-1.c.s b/test/torture-s/pr22098-1.c.s index c26e47436..b10bd2870 100644 --- a/test/torture-s/pr22098-1.c.s +++ b/test/torture-s/pr22098-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr22098-2.c.s b/test/torture-s/pr22098-2.c.s index 5a449c6f1..47da9bbd8 100644 --- a/test/torture-s/pr22098-2.c.s +++ b/test/torture-s/pr22098-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr22098-3.c.s b/test/torture-s/pr22098-3.c.s index 7796d4d4a..0f53b5358 100644 --- a/test/torture-s/pr22098-3.c.s +++ b/test/torture-s/pr22098-3.c.s @@ -36,7 +36,7 @@ main: # @main i32.const $push0=, 1 i32.add $push1=, $pop2, $pop0 i32.store n($pop5), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end i32.const $push6=, 0 @@ -60,6 +60,6 @@ n: .size n, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr22348.c.s b/test/torture-s/pr22348.c.s index 269f9f626..aa9a5dfb4 100644 --- a/test/torture-s/pr22348.c.s +++ b/test/torture-s/pr22348.c.s @@ -7,7 +7,7 @@ f: # @f .param i32 # BB#0: # %entry - block + block i32.const $push0=, 53 i32.ge_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -35,5 +35,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr22429.c.s b/test/torture-s/pr22429.c.s index 036f5a79a..26eafa5c1 100644 --- a/test/torture-s/pr22429.c.s +++ b/test/torture-s/pr22429.c.s @@ -33,4 +33,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr22493-1.c.s b/test/torture-s/pr22493-1.c.s index ba2919b3d..c7e64b164 100644 --- a/test/torture-s/pr22493-1.c.s +++ b/test/torture-s/pr22493-1.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr22630.c.s b/test/torture-s/pr22630.c.s index 77cebd7cf..cb9008d2d 100644 --- a/test/torture-s/pr22630.c.s +++ b/test/torture-s/pr22630.c.s @@ -7,7 +7,7 @@ bla: # @bla .param i32 # BB#0: # %entry - block + block i32.const $push0=, j i32.select $push1=, $0, $pop0, $0 i32.eq $push2=, $pop1, $0 @@ -49,4 +49,4 @@ j: .size j, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr23047.c.s b/test/torture-s/pr23047.c.s index 1e96a2063..64e13f5af 100644 --- a/test/torture-s/pr23047.c.s +++ b/test/torture-s/pr23047.c.s @@ -8,7 +8,7 @@ f: # @f .param i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 31 i32.shr_s $push6=, $0, $pop0 tee_local $push5=, $1=, $pop6 @@ -45,6 +45,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr23135.c.s b/test/torture-s/pr23135.c.s index 6c8137d8b..551df2bdb 100644 --- a/test/torture-s/pr23135.c.s +++ b/test/torture-s/pr23135.c.s @@ -7,7 +7,7 @@ verify: # @verify .param i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.ne $push0=, $0, $2 br_if 0, $pop0 # 0: down to label0 # BB#1: # %entry @@ -51,7 +51,7 @@ main: # @main i32.add $push85=, $pop89, $pop86 tee_local $push84=, $4=, $pop85 i32.store res($pop92), $pop84 - block + block i32.const $push1=, 160 i32.ne $push2=, $4, $pop1 br_if 0, $pop2 # 0: down to label1 @@ -313,6 +313,6 @@ k: .size k, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr23324.c.s b/test/torture-s/pr23324.c.s index ad010ecd5..2ad486e43 100644 --- a/test/torture-s/pr23324.c.s +++ b/test/torture-s/pr23324.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local f64, f32 # BB#0: # %entry - block + block i32.const $push9=, 0 f64.load $push8=, wv6+32($pop9) tee_local $push7=, $0=, $pop8 @@ -94,5 +94,5 @@ yv7: .size yv7, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr23467.c.s b/test/torture-s/pr23467.c.s index 5c929b5b8..50aa1eaa5 100644 --- a/test/torture-s/pr23467.c.s +++ b/test/torture-s/pr23467.c.s @@ -24,5 +24,5 @@ v: .size v, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr23604.c.s b/test/torture-s/pr23604.c.s index 43fef5bff..bf3794a41 100644 --- a/test/torture-s/pr23604.c.s +++ b/test/torture-s/pr23604.c.s @@ -8,8 +8,8 @@ g: # @g .param i32, i32 .result i32 # BB#0: # %entry - block - block + block + block i32.const $push0=, 1 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -44,4 +44,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr23941.c.s b/test/torture-s/pr23941.c.s index 247faefa8..247709dd2 100644 --- a/test/torture-s/pr23941.c.s +++ b/test/torture-s/pr23941.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 f64.load $push0=, d($pop3) f64.const $push1=, 0x1p-127 @@ -34,5 +34,5 @@ d: .size d, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr24141.c.s b/test/torture-s/pr24141.c.s index 711e9e773..a68329378 100644 --- a/test/torture-s/pr24141.c.s +++ b/test/torture-s/pr24141.c.s @@ -21,7 +21,7 @@ g: # @g f: # @f .param i32, i32 # BB#0: # %entry - block + block i32.eqz $push2=, $0 br_if 0, $pop2 # 0: down to label0 # BB#1: # %entry @@ -63,4 +63,4 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr24142.c.s b/test/torture-s/pr24142.c.s index 9f2fc95aa..6b702f6ae 100644 --- a/test/torture-s/pr24142.c.s +++ b/test/torture-s/pr24142.c.s @@ -34,4 +34,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr24716.c.s b/test/torture-s/pr24716.c.s index cd04f3d2d..671bbceb1 100644 --- a/test/torture-s/pr24716.c.s +++ b/test/torture-s/pr24716.c.s @@ -18,10 +18,10 @@ f: # @f # Child Loop BB0_9 Depth 3 # Child Loop BB0_14 Depth 2 # Child Loop BB0_15 Depth 3 - block - loop # label1: - block - block + block + loop # label1: + block + block i32.const $push25=, 3 i32.lt_s $push0=, $5, $pop25 br_if 0, $pop0 # 0: down to label3 @@ -42,7 +42,7 @@ f: # @f .LBB0_4: # %while.cond.preheader # in Loop: Header=BB0_1 Depth=1 end_block # label2: - block + block i32.le_s $push2=, $5, $1 br_if 0, $pop2 # 0: down to label4 # BB#5: # %while.body.lr.ph @@ -51,7 +51,7 @@ f: # @f .LBB0_6: # %while.body # Parent Loop BB0_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label5: + loop # label5: i32.add $push13=, $5, $4 tee_local $push12=, $5=, $pop13 i32.gt_s $push3=, $pop12, $1 @@ -68,14 +68,14 @@ f: # @f # Parent Loop BB0_1 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB0_9 Depth 3 - loop # label6: + loop # label6: i32.load $4=, 0($2) .LBB0_9: # %do.body11 # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_8 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label7: - block + loop # label7: + block i32.eqz $push29=, $4 br_if 0, $pop29 # 0: down to label8 # BB#10: # %if.then13 @@ -104,7 +104,7 @@ f: # @f # Parent Loop BB0_1 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB0_15 Depth 3 - loop # label9: + loop # label9: i32.const $push20=, 2 i32.shl $push7=, $4, $pop20 i32.const $push19=, Link @@ -115,8 +115,8 @@ f: # @f # Parent Loop BB0_1 Depth=1 # Parent Loop BB0_14 Depth=2 # => This Inner Loop Header: Depth=3 - block - loop # label11: + block + loop # label11: i32.ge_s $push9=, $1, $3 br_if 1, $pop9 # 1: down to label10 # BB#16: # %while.body26 @@ -168,11 +168,11 @@ main: # @main # Child Loop BB1_6 Depth 2 # Child Loop BB1_8 Depth 2 # Child Loop BB1_11 Depth 2 - loop # label12: - block - block - block - block + loop i32 # label12: + block + block + block + block i32.const $push10=, 3 i32.lt_s $push0=, $2, $pop10 br_if 0, $pop0 # 0: down to label16 @@ -193,7 +193,7 @@ main: # @main .LBB1_4: # %while.cond.preheader.i # in Loop: Header=BB1_1 Depth=1 end_block # label15: - block + block i32.le_s $push3=, $2, $1 br_if 0, $pop3 # 0: down to label17 # BB#5: # %while.body.lr.ph.i @@ -202,7 +202,7 @@ main: # @main .LBB1_6: # %while.body.i # Parent Loop BB1_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label18: + loop # label18: i32.add $push15=, $2, $3 tee_local $push14=, $2=, $pop15 i32.gt_s $push4=, $pop14, $1 @@ -220,8 +220,8 @@ main: # @main .LBB1_8: # %do.body11.i # Parent Loop BB1_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label19: - block + loop # label19: + block i32.eqz $push25=, $3 br_if 0, $pop25 # 0: down to label20 # BB#9: # %if.then13.i @@ -239,7 +239,7 @@ main: # @main # Parent Loop BB1_1 Depth=1 # => This Inner Loop Header: Depth=2 end_loop - loop # label21: + loop # label21: i32.const $push24=, 2 i32.shl $push7=, $4, $pop24 i32.const $push23=, Link @@ -253,7 +253,7 @@ main: # @main .LBB1_12: # %f.exit end_loop end_block # label14: - block + block i32.eqz $push27=, $2 br_if 0, $pop27 # 0: down to label22 # BB#13: # %if.end @@ -294,5 +294,5 @@ W: .size W, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr24851.c.s b/test/torture-s/pr24851.c.s index 3df7f15f2..0a9a44c02 100644 --- a/test/torture-s/pr24851.c.s +++ b/test/torture-s/pr24851.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr25125.c.s b/test/torture-s/pr25125.c.s index f5117bdcd..51cadfd9e 100644 --- a/test/torture-s/pr25125.c.s +++ b/test/torture-s/pr25125.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.const $push6=, 0 i32.gt_s $push0=, $0, $pop6 br_if 0, $pop0 # 0: down to label0 @@ -35,7 +35,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, -32767 i32.call $push1=, f@FUNCTION, $pop0 i32.const $push2=, 1 @@ -54,6 +54,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr25737.c.s b/test/torture-s/pr25737.c.s index 3894a20af..30259c848 100644 --- a/test/torture-s/pr25737.c.s +++ b/test/torture-s/pr25737.c.s @@ -41,4 +41,4 @@ Timer_Queue: .size Timer_Queue, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr27073.c.s b/test/torture-s/pr27073.c.s index 849739f38..c84fee085 100644 --- a/test/torture-s/pr27073.c.s +++ b/test/torture-s/pr27073.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32, i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.eqz $push13=, $4 br_if 0, $pop13 # 0: down to label0 # BB#1: # %while.body.preheader @@ -15,7 +15,7 @@ foo: # @foo i32.sub $4=, $pop0, $4 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.store 0($0), $5 i32.const $push12=, 4 i32.add $push1=, $0, $pop12 @@ -65,7 +65,7 @@ main: # @main i32.const $push1=, 400 i32.const $push0=, 500 call foo@FUNCTION, $0, $0, $0, $0, $pop4, $pop3, $pop39, $pop2, $pop1, $pop0 - block + block i32.load $push5=, 0($0) i32.const $push38=, 100 i32.ne $push6=, $pop5, $pop38 @@ -128,6 +128,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr27260.c.s b/test/torture-s/pr27260.c.s index d07f86c21..291dad2eb 100644 --- a/test/torture-s/pr27260.c.s +++ b/test/torture-s/pr27260.c.s @@ -31,8 +31,8 @@ main: # @main i32.store8 buf+64($pop17), $pop2 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.const $push18=, buf i32.add $push3=, $2, $pop18 i32.load8_u $push4=, 0($pop3) @@ -54,8 +54,8 @@ main: # @main i32.const $2=, 1 .LBB1_4: # %for.cond3 # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.const $push24=, 63 i32.gt_s $push8=, $2, $pop24 br_if 1, $pop8 # 1: down to label2 @@ -82,8 +82,8 @@ main: # @main i32.const $2=, 1 .LBB1_8: # %for.cond16 # =>This Inner Loop Header: Depth=1 - block - loop # label5: + block + loop # label5: i32.const $push27=, 63 i32.gt_s $push12=, $2, $pop27 br_if 1, $pop12 # 1: down to label4 @@ -122,5 +122,5 @@ buf: .size buf, 65 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr27285.c.s b/test/torture-s/pr27285.c.s index 2ee4cb8a0..66d9912ec 100644 --- a/test/torture-s/pr27285.c.s +++ b/test/torture-s/pr27285.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32 .local i32, i32 # BB#0: # %entry - block + block i32.load8_u $push8=, 1($0) tee_local $push7=, $3=, $pop8 i32.eqz $push22=, $pop7 @@ -20,7 +20,7 @@ foo: # @foo i32.add $0=, $0, $pop9 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load8_u $push4=, 0($0) i32.const $push21=, 255 i32.const $push20=, 255 @@ -107,7 +107,7 @@ main: # @main i32.const $push41=, 24 i32.add $push42=, $0, $pop41 call foo@FUNCTION, $pop42, $0 - block + block i32.load8_u $push16=, 3($0) i32.const $push15=, 170 i32.ne $push17=, $pop16, $pop15 @@ -152,5 +152,5 @@ main: # @main .size .Lmain.x, 19 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr27364.c.s b/test/torture-s/pr27364.c.s index f7dfed907..14009af71 100644 --- a/test/torture-s/pr27364.c.s +++ b/test/torture-s/pr27364.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.const $push0=, 1294 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -46,5 +46,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr27671-1.c.s b/test/torture-s/pr27671-1.c.s index faaeca8d1..c440ab85d 100644 --- a/test/torture-s/pr27671-1.c.s +++ b/test/torture-s/pr27671-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr28289.c.s b/test/torture-s/pr28289.c.s index 410f5f049..72a93b8c1 100644 --- a/test/torture-s/pr28289.c.s +++ b/test/torture-s/pr28289.c.s @@ -73,5 +73,5 @@ one: .size one, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr28403.c.s b/test/torture-s/pr28403.c.s index 47449c91e..fac9f6a61 100644 --- a/test/torture-s/pr28403.c.s +++ b/test/torture-s/pr28403.c.s @@ -55,7 +55,7 @@ bar: # @bar main: # @main .result i32 # BB#0: # %entry - block + block i64.const $push0=, 81985529216486895 i64.call $push1=, bar@FUNCTION, $pop0 i64.const $push2=, 312749974122 @@ -83,6 +83,6 @@ global: .size global, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr28651.c.s b/test/torture-s/pr28651.c.s index 99d1ccb68..2898ad6f5 100644 --- a/test/torture-s/pr28651.c.s +++ b/test/torture-s/pr28651.c.s @@ -23,7 +23,7 @@ main: # @main .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 2147483647 i32.call $push1=, foo@FUNCTION, $pop0 i32.eqz $push3=, $pop1 @@ -40,5 +40,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr28778.c.s b/test/torture-s/pr28778.c.s index ac43e5879..b52d1a4ac 100644 --- a/test/torture-s/pr28778.c.s +++ b/test/torture-s/pr28778.c.s @@ -15,7 +15,7 @@ find: # @find i32.sub $push12=, $pop5, $pop6 tee_local $push11=, $1=, $pop12 i32.store __stack_pointer($pop7), $pop11 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.else i32.const $push0=, 42 @@ -23,7 +23,7 @@ find: # @find copy_local $0=, $1 .LBB0_2: # %if.end end_block # label0: - block + block i32.load $push1=, 12($0) i32.const $push2=, 42 i32.ne $push3=, $pop1, $pop2 @@ -49,7 +49,7 @@ find: # @find aglChoosePixelFormat: # @aglChoosePixelFormat .param i32 # BB#0: # %entry - block + block i32.load $push0=, 12($0) i32.const $push1=, 42 i32.ne $push2=, $pop0, $pop1 @@ -78,5 +78,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr28982a.c.s b/test/torture-s/pr28982a.c.s index bef3a88df..9376c835a 100644 --- a/test/torture-s/pr28982a.c.s +++ b/test/torture-s/pr28982a.c.s @@ -28,7 +28,7 @@ foo: # @foo f32.const $58=, 0x0p0 f32.const $59=, 0x0p0 f32.const $60=, 0x0p0 - block + block i32.eqz $push143=, $0 br_if 0, $pop143 # 0: down to label0 # BB#1: # %while.body.preheader @@ -174,7 +174,7 @@ foo: # @foo f32.const $41=, 0x0p0 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: f32.load $push41=, 0($40) f32.add $60=, $60, $pop41 f32.load $push42=, 0($39) @@ -436,7 +436,7 @@ main: # @main i32.store incs+76($pop121), $pop35 .LBB1_1: # %for.body4 # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: f32.convert_s/i32 $push36=, $1 f32.store 0($0), $pop36 i32.const $push167=, 4 @@ -594,4 +594,4 @@ input: .size input, 320 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr28982b.c.s b/test/torture-s/pr28982b.c.s index 251507edf..11d749844 100644 --- a/test/torture-s/pr28982b.c.s +++ b/test/torture-s/pr28982b.c.s @@ -58,7 +58,7 @@ foo: # @foo f32.const $58=, 0x0p0 f32.const $59=, 0x0p0 f32.const $60=, 0x0p0 - block + block i32.eqz $push161=, $0 br_if 0, $pop161 # 0: down to label0 # BB#1: # %while.body.preheader @@ -204,7 +204,7 @@ foo: # @foo f32.const $41=, 0x0p0 .LBB1_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: f32.load $push41=, 0($40) f32.add $60=, $60, $pop41 f32.load $push42=, 0($39) @@ -476,7 +476,7 @@ main: # @main i32.store incs+76($pop121), $pop35 .LBB2_1: # %for.body4 # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: f32.convert_s/i32 $push36=, $1 f32.store 0($0), $pop36 i32.const $push167=, 4 @@ -634,4 +634,4 @@ input: .size input, 320 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr29006.c.s b/test/torture-s/pr29006.c.s index 46983c077..5c961e932 100644 --- a/test/torture-s/pr29006.c.s +++ b/test/torture-s/pr29006.c.s @@ -58,4 +58,4 @@ main: # @main .size .Lmain.s, 9 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr29156.c.s b/test/torture-s/pr29156.c.s index fb9248099..0a2816235 100644 --- a/test/torture-s/pr29156.c.s +++ b/test/torture-s/pr29156.c.s @@ -47,4 +47,4 @@ global: .size global, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr29695-1.c.s b/test/torture-s/pr29695-1.c.s index 16ae5e3fb..b3ff0a9ce 100644 --- a/test/torture-s/pr29695-1.c.s +++ b/test/torture-s/pr29695-1.c.s @@ -118,4 +118,4 @@ main: # @main .size main, .Lfunc_end8-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr29695-2.c.s b/test/torture-s/pr29695-2.c.s index 5893adc30..7d6ccb3c5 100644 --- a/test/torture-s/pr29695-2.c.s +++ b/test/torture-s/pr29695-2.c.s @@ -153,7 +153,7 @@ f8: # @f8 main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push10=, 0 i32.load8_u $push0=, a($pop10) i32.const $push1=, 7 @@ -225,5 +225,5 @@ d: .size d, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr29797-1.c.s b/test/torture-s/pr29797-1.c.s index 038554c4a..05294d26c 100644 --- a/test/torture-s/pr29797-1.c.s +++ b/test/torture-s/pr29797-1.c.s @@ -27,4 +27,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr29797-2.c.s b/test/torture-s/pr29797-2.c.s index f4b203741..1ac8e1c33 100644 --- a/test/torture-s/pr29797-2.c.s +++ b/test/torture-s/pr29797-2.c.s @@ -27,4 +27,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr29798.c.s b/test/torture-s/pr29798.c.s index 81ba187af..1fc0e865d 100644 --- a/test/torture-s/pr29798.c.s +++ b/test/torture-s/pr29798.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr30185.c.s b/test/torture-s/pr30185.c.s index 581b825d6..bc97a6b67 100644 --- a/test/torture-s/pr30185.c.s +++ b/test/torture-s/pr30185.c.s @@ -30,4 +30,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr30778.c.s b/test/torture-s/pr30778.c.s index 12021d9d8..45d3a0aec 100644 --- a/test/torture-s/pr30778.c.s +++ b/test/torture-s/pr30778.c.s @@ -55,7 +55,7 @@ main: # @main i32.const $push0=, -1 i32.store 28($0), $pop0 call init_reg_last@FUNCTION - block + block i32.load $push1=, 28($0) i32.const $push12=, -1 i32.ne $push2=, $pop1, $pop12 @@ -83,5 +83,5 @@ reg_stat: .size reg_stat, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr31072.c.s b/test/torture-s/pr31072.c.s index d414f033c..c0f4547a3 100644 --- a/test/torture-s/pr31072.c.s +++ b/test/torture-s/pr31072.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, ReadyFlag_NotProperlyInitialized($pop3) i32.const $push1=, 1 @@ -34,5 +34,5 @@ ReadyFlag_NotProperlyInitialized: .size ReadyFlag_NotProperlyInitialized, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr31136.c.s b/test/torture-s/pr31136.c.s index f348a312b..b9812a26a 100644 --- a/test/torture-s/pr31136.c.s +++ b/test/torture-s/pr31136.c.s @@ -31,4 +31,4 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr31169.c.s b/test/torture-s/pr31169.c.s index 01e7daea8..f66aa304d 100644 --- a/test/torture-s/pr31169.c.s +++ b/test/torture-s/pr31169.c.s @@ -9,8 +9,8 @@ sign_bit_p: # @sign_bit_p .result i32 .local i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.load16_u $push0=, 0($0) i32.const $push1=, 511 i32.and $push20=, $pop0, $pop1 @@ -68,4 +68,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr31448-2.c.s b/test/torture-s/pr31448-2.c.s index ffa218890..6c2eb9ce2 100644 --- a/test/torture-s/pr31448-2.c.s +++ b/test/torture-s/pr31448-2.c.s @@ -73,4 +73,4 @@ next: .size next, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr31448.c.s b/test/torture-s/pr31448.c.s index fb5c141d5..6e4e16383 100644 --- a/test/torture-s/pr31448.c.s +++ b/test/torture-s/pr31448.c.s @@ -73,4 +73,4 @@ next: .size next, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr31605.c.s b/test/torture-s/pr31605.c.s index 9b9aebf2e..5572e893f 100644 --- a/test/torture-s/pr31605.c.s +++ b/test/torture-s/pr31605.c.s @@ -7,7 +7,7 @@ put_field: # @put_field .param i32, i32 # BB#0: # %entry - block + block i32.add $push0=, $1, $0 i32.const $push1=, -8 i32.or $push2=, $pop0, $pop1 @@ -42,6 +42,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/pr32244-1.c.s b/test/torture-s/pr32244-1.c.s index 53cdffff5..efba531a4 100644 --- a/test/torture-s/pr32244-1.c.s +++ b/test/torture-s/pr32244-1.c.s @@ -7,7 +7,7 @@ test1: # @test1 .param i64 # BB#0: # %entry - block + block i32.const $push0=, 0 i64.load $push1=, x($pop0) i64.const $push2=, 32 @@ -55,5 +55,5 @@ x: .size x, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr32500.c.s b/test/torture-s/pr32500.c.s index 11e23298c..59d1c2ebd 100644 --- a/test/torture-s/pr32500.c.s +++ b/test/torture-s/pr32500.c.s @@ -59,5 +59,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr33142.c.s b/test/torture-s/pr33142.c.s index 158982254..a2487dc76 100644 --- a/test/torture-s/pr33142.c.s +++ b/test/torture-s/pr33142.c.s @@ -10,7 +10,7 @@ lisp_atan2: # @lisp_atan2 .local i32 # BB#0: # %entry i32.const $2=, 0 - block + block i32.const $push0=, 1 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -52,7 +52,7 @@ main: # @main i32.store 12($0), $pop0 i32.const $push1=, -77 i32.store 8($0), $pop1 - block + block i32.load $push2=, 12($0) i32.load $push3=, 8($0) i32.call $push4=, lisp_atan2@FUNCTION, $pop2, $pop3 @@ -73,5 +73,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr33382.c.s b/test/torture-s/pr33382.c.s index a18bbf665..6aab8e228 100644 --- a/test/torture-s/pr33382.c.s +++ b/test/torture-s/pr33382.c.s @@ -27,7 +27,7 @@ main: # @main i32.const $push3=, 0 i32.const $push0=, 1 i32.store x+4($pop3), $pop0 - block + block i32.const $push2=, 0 i32.load $push1=, x+8($pop2) br_if 0, $pop1 # 0: down to label0 @@ -56,5 +56,5 @@ x: .size x, 20 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr33631.c.s b/test/torture-s/pr33631.c.s index 4e11d674f..29968293c 100644 --- a/test/torture-s/pr33631.c.s +++ b/test/torture-s/pr33631.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr33669.c.s b/test/torture-s/pr33669.c.s index 7e13bb0b4..5b0fffe89 100644 --- a/test/torture-s/pr33669.c.s +++ b/test/torture-s/pr33669.c.s @@ -10,7 +10,7 @@ foo: # @foo .local i32, i64, i64 # BB#0: # %entry i64.const $5=, -1 - block + block i32.load $push17=, 0($0) tee_local $push16=, $3=, $pop17 i32.add $push0=, $2, $3 @@ -57,4 +57,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr33779-1.c.s b/test/torture-s/pr33779-1.c.s index e70411eb2..73887a0cf 100644 --- a/test/torture-s/pr33779-1.c.s +++ b/test/torture-s/pr33779-1.c.s @@ -31,4 +31,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr33779-2.c.s b/test/torture-s/pr33779-2.c.s index cd617f8fc..e1d334583 100644 --- a/test/torture-s/pr33779-2.c.s +++ b/test/torture-s/pr33779-2.c.s @@ -33,4 +33,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr33870-1.c.s b/test/torture-s/pr33870-1.c.s index cd2310ecc..7fc817c38 100644 --- a/test/torture-s/pr33870-1.c.s +++ b/test/torture-s/pr33870-1.c.s @@ -20,7 +20,7 @@ sort_pagelist: # @sort_pagelist i32.const $push0=, 100 i32.call $1=, memset@FUNCTION, $3, $pop64, $pop0 i32.const $3=, 0 - block + block i32.eqz $push116=, $0 br_if 0, $pop116 # 0: down to label0 # BB#1: # %while.body.lr.ph @@ -35,7 +35,7 @@ sort_pagelist: # @sort_pagelist # Child Loop BB0_3 Depth 2 # Child Loop BB0_6 Depth 3 # Child Loop BB0_19 Depth 2 - loop # label1: + loop # label1: copy_local $push73=, $0 tee_local $push72=, $3=, $pop73 i32.const $push71=, 32 @@ -49,11 +49,11 @@ sort_pagelist: # @sort_pagelist # Parent Loop BB0_2 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB0_6 Depth 3 - block - block - block - block - loop # label6: + block + block + block + block + loop # label6: i32.const $push78=, 2 i32.shl $push1=, $6, $pop78 i32.add $push77=, $1, $pop1 @@ -69,9 +69,9 @@ sort_pagelist: # @sort_pagelist i32.const $push56=, 112 i32.add $push57=, $1, $pop56 copy_local $7=, $pop57 - block - block - block + block + block + block i32.eqz $push118=, $3 br_if 0, $pop118 # 0: down to label9 # BB#5: # %while.body.i.preheader @@ -83,9 +83,9 @@ sort_pagelist: # @sort_pagelist # Parent Loop BB0_2 Depth=1 # Parent Loop BB0_3 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label10: - block - block + loop # label10: + block + block i32.load $push3=, 4($8) i32.load $push2=, 4($3) i32.ge_u $push4=, $pop3, $pop2 @@ -115,7 +115,7 @@ sort_pagelist: # @sort_pagelist .LBB0_9: # %if.end.i # in Loop: Header=BB0_6 Depth=3 end_block # label11: - block + block i32.const $push84=, 0 i32.load $push9=, 0($2) i32.load $push10=, 0($pop9) @@ -184,9 +184,9 @@ sort_pagelist: # @sort_pagelist .LBB0_19: # %while.body.i84 # Parent Loop BB0_2 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label14: - block - block + loop # label14: + block + block i32.load $push16=, 4($8) i32.load $push15=, 4($3) i32.ge_u $push17=, $pop16, $pop15 @@ -266,7 +266,7 @@ sort_pagelist: # @sort_pagelist .LBB0_30: # %for.body17 # =>This Loop Header: Depth=1 # Child Loop BB0_33 Depth 2 - loop # label17: + loop # label17: i32.const $push104=, 2 i32.shl $push27=, $4, $pop104 i32.add $push28=, $1, $pop27 @@ -278,8 +278,8 @@ sort_pagelist: # @sort_pagelist i32.const $push50=, 112 i32.add $push51=, $1, $pop50 copy_local $7=, $pop51 - block - block + block + block i32.eqz $push123=, $3 br_if 0, $pop123 # 0: down to label19 # BB#31: # %for.body17 @@ -294,9 +294,9 @@ sort_pagelist: # @sort_pagelist .LBB0_33: # %while.body.i54 # Parent Loop BB0_30 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label20: - block - block + loop # label20: + block + block i32.load $push30=, 4($3) i32.load $push29=, 4($8) i32.ge_u $push31=, $pop30, $pop29 @@ -419,7 +419,7 @@ main: # @main i32.add $push23=, $1, $pop22 i32.const $push37=, 0 i32.store 0($pop23), $pop37 - block + block i32.call $push36=, sort_pagelist@FUNCTION, $1 tee_local $push35=, $0=, $pop36 i32.const $push34=, 32 @@ -461,5 +461,5 @@ vx: .size vx, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr33870.c.s b/test/torture-s/pr33870.c.s index 7e0445800..e4bc00334 100644 --- a/test/torture-s/pr33870.c.s +++ b/test/torture-s/pr33870.c.s @@ -20,7 +20,7 @@ sort_pagelist: # @sort_pagelist i32.const $push45=, 0 i32.const $push0=, 100 i32.call $1=, memset@FUNCTION, $11, $pop45, $pop0 - block + block i32.eqz $push103=, $0 br_if 0, $pop103 # 0: down to label0 # BB#1: # %while.body.lr.ph @@ -37,7 +37,7 @@ sort_pagelist: # @sort_pagelist # Child Loop BB0_7 Depth 4 # Child Loop BB0_17 Depth 2 # Child Loop BB0_18 Depth 3 - loop # label1: + loop # label1: copy_local $push51=, $0 tee_local $push50=, $8=, $pop51 i32.load $0=, 28($pop50) @@ -49,13 +49,13 @@ sort_pagelist: # @sort_pagelist # => This Loop Header: Depth=2 # Child Loop BB0_6 Depth 3 # Child Loop BB0_7 Depth 4 - block - block - block - block - block - block - loop # label8: + block + block + block + block + block + block + loop # label8: i32.const $push56=, 2 i32.shl $push1=, $7, $pop56 i32.add $push55=, $1, $pop1 @@ -69,8 +69,8 @@ sort_pagelist: # @sort_pagelist i32.const $push37=, 104 i32.add $push38=, $1, $pop37 copy_local $10=, $pop38 - block - block + block + block i32.eqz $push105=, $8 br_if 0, $pop105 # 0: down to label10 # BB#5: # %while.body.lr.ph.i.preheader @@ -83,7 +83,7 @@ sort_pagelist: # @sort_pagelist # Parent Loop BB0_3 Depth=2 # => This Loop Header: Depth=3 # Child Loop BB0_7 Depth 4 - loop # label11: + loop # label11: copy_local $push58=, $4 tee_local $push57=, $3=, $pop58 i32.load $4=, 0($pop57) @@ -92,9 +92,9 @@ sort_pagelist: # @sort_pagelist # Parent Loop BB0_3 Depth=2 # Parent Loop BB0_6 Depth=3 # => This Inner Loop Header: Depth=4 - block - block - loop # label14: + block + block + loop # label14: copy_local $push60=, $8 tee_local $push59=, $11=, $pop60 i32.load $push2=, 0($pop59) @@ -171,7 +171,7 @@ sort_pagelist: # @sort_pagelist # Parent Loop BB0_2 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB0_18 Depth 3 - loop # label15: + loop # label15: copy_local $push74=, $4 tee_local $push73=, $3=, $pop74 i32.load $4=, 0($pop73) @@ -179,8 +179,8 @@ sort_pagelist: # @sort_pagelist # Parent Loop BB0_2 Depth=1 # Parent Loop BB0_17 Depth=2 # => This Inner Loop Header: Depth=3 - block - loop # label17: + block + loop # label17: copy_local $push76=, $11 tee_local $push75=, $8=, $pop76 i32.load $push9=, 0($pop75) @@ -254,15 +254,15 @@ sort_pagelist: # @sort_pagelist # =>This Loop Header: Depth=1 # Child Loop BB0_32 Depth 2 # Child Loop BB0_33 Depth 3 - loop # label18: + loop # label18: i32.const $push85=, 2 i32.shl $push14=, $10, $pop85 i32.add $push15=, $1, $pop14 i32.load $11=, 0($pop15) - block - block - block - block + block + block + block + block i32.eqz $push108=, $4 br_if 0, $pop108 # 0: down to label22 # BB#30: # %for.body15 @@ -279,7 +279,7 @@ sort_pagelist: # @sort_pagelist # Parent Loop BB0_29 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB0_33 Depth 3 - loop # label23: + loop # label23: copy_local $push87=, $4 tee_local $push86=, $3=, $pop87 i32.load $4=, 0($pop86) @@ -287,8 +287,8 @@ sort_pagelist: # @sort_pagelist # Parent Loop BB0_29 Depth=1 # Parent Loop BB0_32 Depth=2 # => This Inner Loop Header: Depth=3 - block - loop # label25: + block + loop # label25: copy_local $push89=, $8 tee_local $push88=, $11=, $pop89 i32.load $push16=, 0($pop88) @@ -404,7 +404,7 @@ main: # @main i32.add $push15=, $1, $pop14 i32.const $push27=, 0 i32.store 0($pop15), $pop27 - block + block i32.call $push26=, sort_pagelist@FUNCTION, $1 tee_local $push25=, $0=, $pop26 i32.load $push16=, 28($0) @@ -426,5 +426,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr33992.c.s b/test/torture-s/pr33992.c.s index 459768f8a..2ae74eea5 100644 --- a/test/torture-s/pr33992.c.s +++ b/test/torture-s/pr33992.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i64 # BB#0: # %entry - block + block i64.eqz $push0=, $0 i32.eqz $push1=, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -34,7 +34,7 @@ do_test: # @do_test i64.const $3=, 63 .LBB1_1: # %for.cond.i # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i64.const $push15=, 4294967296 i64.add $4=, $4, $pop15 i64.const $push14=, 4294967295 @@ -57,7 +57,7 @@ do_test: # @do_test i64.const $3=, 63 .LBB1_3: # %for.cond.i.1 # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i64.const $push19=, 4294967296 i64.add $4=, $4, $pop19 i64.const $push18=, 4294967295 @@ -111,5 +111,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr34070-1.c.s b/test/torture-s/pr34070-1.c.s index 82e1e0217..4f0484a19 100644 --- a/test/torture-s/pr34070-1.c.s +++ b/test/torture-s/pr34070-1.c.s @@ -29,4 +29,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr34070-2.c.s b/test/torture-s/pr34070-2.c.s index f82131e84..926cb6770 100644 --- a/test/torture-s/pr34070-2.c.s +++ b/test/torture-s/pr34070-2.c.s @@ -30,4 +30,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr34099-2.c.s b/test/torture-s/pr34099-2.c.s index dafe93b87..eeebd77ae 100644 --- a/test/torture-s/pr34099-2.c.s +++ b/test/torture-s/pr34099-2.c.s @@ -72,4 +72,4 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr34099.c.s b/test/torture-s/pr34099.c.s index 6c59cf780..2d0cdd85e 100644 --- a/test/torture-s/pr34099.c.s +++ b/test/torture-s/pr34099.c.s @@ -28,4 +28,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr34130.c.s b/test/torture-s/pr34130.c.s index 5c1ef79cf..41e8e023a 100644 --- a/test/torture-s/pr34130.c.s +++ b/test/torture-s/pr34130.c.s @@ -40,4 +40,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr34154.c.s b/test/torture-s/pr34154.c.s index d5f76fdd8..dcbf96f92 100644 --- a/test/torture-s/pr34154.c.s +++ b/test/torture-s/pr34154.c.s @@ -34,4 +34,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr34176.c.s b/test/torture-s/pr34176.c.s index 953b6c777..f630818c9 100644 --- a/test/torture-s/pr34176.c.s +++ b/test/torture-s/pr34176.c.s @@ -32,7 +32,7 @@ foo: # @foo i32.const $push0=, 1 i32.add $push1=, $pop4, $pop0 i32.store foo.count($pop7), $pop1 - block + block i32.const $push3=, 1 i32.ge_s $push2=, $1, $pop3 br_if 0, $pop2 # 0: down to label0 @@ -68,11 +68,11 @@ main: # @main .LBB2_1: # %if.end # =>This Loop Header: Depth=1 # Child Loop BB2_3 Depth 2 - loop # label1: + loop # label1: i32.load $0=, 12($2) i32.call $drop=, foo@FUNCTION, $1 i32.const $1=, 0 - block + block i32.eqz $push18=, $0 br_if 0, $pop18 # 0: down to label2 # BB#2: # %while.body.preheader @@ -81,7 +81,7 @@ main: # @main .LBB2_3: # %while.body # Parent Loop BB2_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label3: + loop # label3: i32.const $push17=, 8 i32.add $1=, $1, $pop17 i32.const $push16=, -1 @@ -117,5 +117,5 @@ foo.count: .size foo.count, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr34415.c.s b/test/torture-s/pr34415.c.s index 434848f18..61ef65316 100644 --- a/test/torture-s/pr34415.c.s +++ b/test/torture-s/pr34415.c.s @@ -14,11 +14,11 @@ foo: # @foo .LBB0_1: # %for.cond # =>This Loop Header: Depth=1 # Child Loop BB0_4 Depth 2 - loop # label0: + loop i32 # label0: copy_local $push25=, $0 tee_local $push24=, $1=, $pop25 copy_local $0=, $pop24 - block + block i32.load8_s $push23=, 0($1) tee_local $push22=, $2=, $pop23 i32.const $push21=, -32 @@ -36,7 +36,7 @@ foo: # @foo br_if 0, $pop4 # 0: down to label1 # BB#2: # %for.cond # in Loop: Header=BB0_1 Depth=1 - block + block i32.const $push26=, 65 i32.ne $push5=, $3, $pop26 br_if 0, $pop5 # 0: down to label2 @@ -46,7 +46,7 @@ foo: # @foo .LBB0_4: # %do.body # Parent Loop BB0_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label3: + loop # label3: i32.const $push30=, 1 i32.add $push29=, $0, $pop30 tee_local $push28=, $0=, $pop29 @@ -58,7 +58,7 @@ foo: # @foo .LBB0_5: # %for.end end_loop end_block # label2: - block + block i32.const $push8=, 3 i32.lt_s $push9=, $5, $pop8 br_if 0, $pop9 # 0: down to label4 @@ -108,4 +108,4 @@ main: # @main .size .L.str, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr34456.c.s b/test/torture-s/pr34456.c.s index 44eb37ff3..da769a8db 100644 --- a/test/torture-s/pr34456.c.s +++ b/test/torture-s/pr34456.c.s @@ -56,7 +56,7 @@ compare: # @compare .local i32 # BB#0: # %entry i32.load $2=, 4($0) - block + block i32.load $push8=, 0($1) tee_local $push7=, $1=, $pop8 i32.eqz $push10=, $pop7 @@ -103,5 +103,5 @@ errors: .size errors, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype qsort, void, i32, i32, i32, i32 diff --git a/test/torture-s/pr34768-1.c.s b/test/torture-s/pr34768-1.c.s index adcd46206..37b5c81b7 100644 --- a/test/torture-s/pr34768-1.c.s +++ b/test/torture-s/pr34768-1.c.s @@ -61,7 +61,7 @@ main: # @main i32.const $push3=, 0 i32.const $push0=, 1 i32.store x($pop3), $pop0 - block + block i32.const $push2=, 1 i32.call $push1=, test@FUNCTION, $pop2 br_if 0, $pop1 # 0: down to label0 @@ -86,5 +86,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr34768-2.c.s b/test/torture-s/pr34768-2.c.s index bf04d70ed..56b70ec27 100644 --- a/test/torture-s/pr34768-2.c.s +++ b/test/torture-s/pr34768-2.c.s @@ -65,7 +65,7 @@ main: # @main i32.const $push3=, 0 i32.const $push0=, 1 i32.store x($pop3), $pop0 - block + block i32.const $push2=, 1 i32.call $push1=, test@FUNCTION, $pop2 br_if 0, $pop1 # 0: down to label0 @@ -90,5 +90,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr34971.c.s b/test/torture-s/pr34971.c.s index 57e401f2b..581951076 100644 --- a/test/torture-s/pr34971.c.s +++ b/test/torture-s/pr34971.c.s @@ -8,7 +8,7 @@ test1: # @test1 .param i64 .local i64 # BB#0: # %entry - block + block i32.const $push0=, 0 i64.load $push1=, x($pop0) i64.const $push2=, 1099511627775 @@ -62,5 +62,5 @@ x: .size x, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr34982.c.s b/test/torture-s/pr34982.c.s index 2294ffb91..64e350ecd 100644 --- a/test/torture-s/pr34982.c.s +++ b/test/torture-s/pr34982.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr35163.c.s b/test/torture-s/pr35163.c.s index ddd66beb6..cb07fecdd 100644 --- a/test/torture-s/pr35163.c.s +++ b/test/torture-s/pr35163.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr35231.c.s b/test/torture-s/pr35231.c.s index 7f2e695e6..01533537c 100644 --- a/test/torture-s/pr35231.c.s +++ b/test/torture-s/pr35231.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.or $push0=, $1, $0 i32.const $push1=, 1 i32.eq $push2=, $pop0, $pop1 @@ -40,5 +40,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr35390.c.s b/test/torture-s/pr35390.c.s index 15ecfc090..b383d0925 100644 --- a/test/torture-s/pr35390.c.s +++ b/test/torture-s/pr35390.c.s @@ -28,4 +28,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr35456.c.s b/test/torture-s/pr35456.c.s index 3d6fe7665..f03fc9f54 100644 --- a/test/torture-s/pr35456.c.s +++ b/test/torture-s/pr35456.c.s @@ -24,7 +24,7 @@ not_fabs: # @not_fabs main: # @main .result i32 # BB#0: # %entry - block + block f64.const $push0=, -0x0p0 f64.call $push1=, not_fabs@FUNCTION, $pop0 i64.reinterpret/f64 $push2=, $pop1 @@ -43,5 +43,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr35472.c.s b/test/torture-s/pr35472.c.s index 224435d6a..361a384e6 100644 --- a/test/torture-s/pr35472.c.s +++ b/test/torture-s/pr35472.c.s @@ -50,7 +50,7 @@ test: # @test i32.call $push0=, memcpy@FUNCTION, $pop3, $pop19, $pop21 i32.const $push20=, 64 i32.call $drop=, memcpy@FUNCTION, $pop0, $0, $pop20 - block + block i32.load $push5=, 0($0) i32.const $push4=, -1 i32.ne $push6=, $pop5, $pop4 @@ -104,7 +104,7 @@ main: # @main i32.call $push0=, memcpy@FUNCTION, $pop2, $pop18, $pop20 i32.const $push19=, 64 i32.call $drop=, memcpy@FUNCTION, $pop0, $0, $pop19 - block + block i32.load $push4=, 0($0) i32.const $push3=, -1 i32.ne $push5=, $pop4, $pop3 @@ -134,5 +134,5 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr35800.c.s b/test/torture-s/pr35800.c.s index ebf288dfb..43cd9bd8b 100644 --- a/test/torture-s/pr35800.c.s +++ b/test/torture-s/pr35800.c.s @@ -10,13 +10,13 @@ stab_xcoff_builtin_type: # @stab_xcoff_builtin_type .local i32 # BB#0: # %entry i32.const $1=, 0 - block + block i32.const $push0=, -34 i32.lt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 # BB#1: # %if.end i32.const $1=, .L.str - block + block i32.const $push2=, -2 i32.sub $push10=, $pop2, $0 tee_local $push9=, $0=, $pop10 @@ -52,8 +52,8 @@ main: # @main i32.const $0=, .Lswitch.table+8 .LBB1_1: # %stab_xcoff_builtin_type.exit # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.load $push0=, 0($0) i32.load8_u $push1=, 0($pop0) i32.const $push5=, 105 @@ -137,5 +137,5 @@ main: # @main .size .Lswitch.table, 132 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr36034-1.c.s b/test/torture-s/pr36034-1.c.s index 506134905..7d76de3f0 100644 --- a/test/torture-s/pr36034-1.c.s +++ b/test/torture-s/pr36034-1.c.s @@ -139,7 +139,7 @@ main: # @main .result i32 # BB#0: # %entry call test@FUNCTION - block + block i32.const $push62=, 0 f64.load $push29=, tmp($pop62) f64.const $push61=, -0x1p0 @@ -398,5 +398,5 @@ tmp: .size tmp, 240 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr36034-2.c.s b/test/torture-s/pr36034-2.c.s index 3c4878eb6..0ae77fb0e 100644 --- a/test/torture-s/pr36034-2.c.s +++ b/test/torture-s/pr36034-2.c.s @@ -139,7 +139,7 @@ main: # @main .result i32 # BB#0: # %entry call test@FUNCTION - block + block i32.const $push62=, 0 f64.load $push29=, tmp($pop62) f64.const $push61=, -0x1p0 @@ -398,5 +398,5 @@ tmp: .size tmp, 240 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr36038.c.s b/test/torture-s/pr36038.c.s index f9b5ec8b1..927082cc0 100644 --- a/test/torture-s/pr36038.c.s +++ b/test/torture-s/pr36038.c.s @@ -7,7 +7,7 @@ doit: # @doit .local i32, i32, i32 # BB#0: # %entry - block + block i32.const $push19=, 0 i32.load $push18=, markstack_ptr($pop19) tee_local $push17=, $0=, $pop18 @@ -35,7 +35,7 @@ doit: # @doit i32.add $1=, $1, $pop11 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.add $push12=, $2, $0 i32.const $push27=, 16 i32.add $push13=, $pop12, $pop27 @@ -104,7 +104,7 @@ main: # @main i32.const $push18=, 0 i64.const $push17=, 4 i64.store list+40($pop18), $pop17 - block + block i32.const $push15=, expect i32.const $push14=, list i32.const $push13=, 80 @@ -176,6 +176,6 @@ indices: .size indices, 40 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/pr36077.c.s b/test/torture-s/pr36077.c.s index c69a11d80..9dd9d4090 100644 --- a/test/torture-s/pr36077.c.s +++ b/test/torture-s/pr36077.c.s @@ -28,4 +28,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr36093.c.s b/test/torture-s/pr36093.c.s index 84d59babd..9fdd94d28 100644 --- a/test/torture-s/pr36093.c.s +++ b/test/torture-s/pr36093.c.s @@ -39,4 +39,4 @@ foo: .size foo, 2560 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr36321.c.s b/test/torture-s/pr36321.c.s index b735e9224..f7517d681 100644 --- a/test/torture-s/pr36321.c.s +++ b/test/torture-s/pr36321.c.s @@ -42,4 +42,4 @@ argp: .size .L.str, 10 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr36339.c.s b/test/torture-s/pr36339.c.s index e66da10bf..2e28537e5 100644 --- a/test/torture-s/pr36339.c.s +++ b/test/torture-s/pr36339.c.s @@ -43,8 +43,8 @@ check_a: # @check_a .result i32 .local i32 # BB#0: # %entry - block - block + block + block i32.const $push0=, -1 i32.add $push1=, $0, $pop0 i32.load $push2=, 0($pop1) @@ -74,7 +74,7 @@ check_a: # @check_a main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 42 i32.call $push1=, try_a@FUNCTION, $pop0 i32.const $push2=, -1 @@ -92,5 +92,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr36343.c.s b/test/torture-s/pr36343.c.s index 3d0832ff5..16446a2bb 100644 --- a/test/torture-s/pr36343.c.s +++ b/test/torture-s/pr36343.c.s @@ -41,8 +41,8 @@ foo: # @foo i32.select $push16=, $pop12, $pop14, $0 tee_local $push15=, $1=, $pop16 call bar@FUNCTION, $pop15 - block - block + block + block i32.eqz $push19=, $0 br_if 0, $pop19 # 0: down to label1 # BB#1: # %if.then2 @@ -72,7 +72,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 f32.call $push0=, foo@FUNCTION, $pop3 f32.const $push1=, 0x0p0 @@ -90,5 +90,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr36691.c.s b/test/torture-s/pr36691.c.s index fb820b168..8d7adea9d 100644 --- a/test/torture-s/pr36691.c.s +++ b/test/torture-s/pr36691.c.s @@ -39,4 +39,4 @@ g_5: .size g_5, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr36765.c.s b/test/torture-s/pr36765.c.s index 484950c43..f0f971002 100644 --- a/test/torture-s/pr36765.c.s +++ b/test/torture-s/pr36765.c.s @@ -32,7 +32,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.call $push0=, foo@FUNCTION, $pop3 i32.const $push1=, 1 @@ -50,6 +50,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype __builtin_malloc, i32 .functype abort, void diff --git a/test/torture-s/pr37102.c.s b/test/torture-s/pr37102.c.s index 9381f0604..dc78a0b4f 100644 --- a/test/torture-s/pr37102.c.s +++ b/test/torture-s/pr37102.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 5 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -31,7 +31,7 @@ main: # @main # BB#0: # %entry i32.const $push9=, 0 i32.load $0=, b($pop9) - block + block i32.const $push8=, 0 i32.load $push0=, c($pop8) i32.eqz $push14=, $pop0 @@ -86,5 +86,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr37125.c.s b/test/torture-s/pr37125.c.s index 469a35e5f..4c8aa0ef7 100644 --- a/test/torture-s/pr37125.c.s +++ b/test/torture-s/pr37125.c.s @@ -7,7 +7,7 @@ func_44: # @func_44 .param i32 # BB#0: # %entry - block + block i32.const $push0=, -9 i32.mul $push7=, $0, $pop0 tee_local $push6=, $0=, $pop7 @@ -42,5 +42,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr37573.c.s b/test/torture-s/pr37573.c.s index ea9ed89a8..dbde97736 100644 --- a/test/torture-s/pr37573.c.s +++ b/test/torture-s/pr37573.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 # BB#0: # %entry call bar@FUNCTION - block + block i32.const $push2=, p i32.const $push1=, q i32.const $push0=, 23 @@ -47,7 +47,7 @@ bar: # @bar i32.const $2=, 1 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push142=, 30 i32.shr_u $push3=, $1, $pop142 i32.xor $push4=, $pop3, $1 @@ -273,7 +273,7 @@ foo: # @foo i32.add $push38=, $pop0, $pop1 tee_local $push37=, $4=, $pop38 i32.store 4($0), $pop37 - block + block br_if 0, $4 # 0: down to label2 # BB#1: # %if.then i32.const $push39=, 8 @@ -283,7 +283,7 @@ foo: # @foo i32.const $3=, 0 .LBB2_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.add $push55=, $0, $3 tee_local $push54=, $2=, $pop55 i32.const $push53=, 8 @@ -369,6 +369,6 @@ q: .size q, 23 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/pr37882.c.s b/test/torture-s/pr37882.c.s index ccd71bccc..af46e4b96 100644 --- a/test/torture-s/pr37882.c.s +++ b/test/torture-s/pr37882.c.s @@ -30,4 +30,4 @@ s: .size s, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr37924.c.s b/test/torture-s/pr37924.c.s index 38d21aab1..fa309be31 100644 --- a/test/torture-s/pr37924.c.s +++ b/test/torture-s/pr37924.c.s @@ -67,4 +67,4 @@ b: .size b, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr37931.c.s b/test/torture-s/pr37931.c.s index 7411e89ac..6475f645b 100644 --- a/test/torture-s/pr37931.c.s +++ b/test/torture-s/pr37931.c.s @@ -30,4 +30,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr38048-1.c.s b/test/torture-s/pr38048-1.c.s index cc8f66677..dc4f29491 100644 --- a/test/torture-s/pr38048-1.c.s +++ b/test/torture-s/pr38048-1.c.s @@ -27,4 +27,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr38048-2.c.s b/test/torture-s/pr38048-2.c.s index b0cfba663..6497d360e 100644 --- a/test/torture-s/pr38048-2.c.s +++ b/test/torture-s/pr38048-2.c.s @@ -27,4 +27,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr38051.c.s b/test/torture-s/pr38051.c.s index a8a79cdef..d60b445c6 100644 --- a/test/torture-s/pr38051.c.s +++ b/test/torture-s/pr38051.c.s @@ -15,20 +15,20 @@ mymemcmp: # @mymemcmp i32.sub $10=, $pop104, $pop105 i32.const $push26=, 2 i32.shr_u $2=, $2, $pop26 - block - block - block - block - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block + block + block + block + block i32.const $push146=, 3 i32.and $push27=, $0, $pop146 i32.eqz $push222=, $pop27 @@ -170,80 +170,80 @@ mymemcmp: # @mymemcmp i32.const $11=, 34 .LBB0_22: # =>This Inner Loop Header: Depth=1 end_block # label0: - loop # label14: - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block + loop i32 # label14: + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block br_table $11, 27, 35, 36, 37, 28, 38, 39, 40, 29, 30, 41, 42, 43, 31, 24, 32, 33, 34, 25, 26, 44, 45, 46, 47, 48, 3, 11, 12, 13, 4, 14, 15, 16, 5, 6, 17, 18, 19, 7, 0, 8, 9, 10, 1, 2, 20, 21, 22, 23, 23 # 27: down to label60 # 35: down to label52 # 36: down to label51 @@ -988,7 +988,7 @@ main: # @main i32.const $push14=, 0 i64.load $push7=, .L.str.1($pop14):p2align=0 i64.store buf+168($pop15), $pop7 - block + block i32.const $push10=, buf+25 i32.const $push9=, buf+168 i32.const $push8=, 33 @@ -1028,5 +1028,5 @@ buf: .size .L.str.1, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr38151.c.s b/test/torture-s/pr38151.c.s index 03c962291..99395a6ae 100644 --- a/test/torture-s/pr38151.c.s +++ b/test/torture-s/pr38151.c.s @@ -24,7 +24,7 @@ check2848va: # @check2848va i32.store 12($3), $pop4 i32.load $2=, 8($1) i32.load $3=, 4($1) - block + block i32.const $push22=, 0 i32.load $push6=, s2848($pop22) i32.load $push5=, 0($1) @@ -39,8 +39,8 @@ check2848va: # @check2848va i32.store fails($pop28), $pop10 .LBB0_2: # %if.end end_block # label0: - block - block + block + block i32.const $push29=, 0 i32.load $push12=, s2848+4($pop29) i32.ne $push13=, $pop12, $3 @@ -99,7 +99,7 @@ main: # @main i32.add $push14=, $0, $pop13 i32.store 0($0), $pop14 call check2848va@FUNCTION, $0, $0 - block + block i32.const $push15=, 0 i32.load $push5=, fails($pop15) br_if 0, $pop5 # 0: down to label3 @@ -137,5 +137,5 @@ fails: .size fails, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr38212.c.s b/test/torture-s/pr38212.c.s index 5ea9884a6..6212ebe89 100644 --- a/test/torture-s/pr38212.c.s +++ b/test/torture-s/pr38212.c.s @@ -42,7 +42,7 @@ main: # @main i32.store __stack_pointer($pop6), $pop14 i32.const $push13=, 0 i32.store 12($0), $pop13 - block + block i32.const $push10=, 12 i32.add $push11=, $0, $pop10 i32.const $push0=, 1 @@ -66,5 +66,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr38236.c.s b/test/torture-s/pr38236.c.s index d95740982..8d41da18f 100644 --- a/test/torture-s/pr38236.c.s +++ b/test/torture-s/pr38236.c.s @@ -38,7 +38,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push5=, 0 i32.const $push0=, 1 i32.const $push4=, 1 @@ -58,5 +58,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr38422.c.s b/test/torture-s/pr38422.c.s index 0143ff9b6..740436bb6 100644 --- a/test/torture-s/pr38422.c.s +++ b/test/torture-s/pr38422.c.s @@ -55,4 +55,4 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr38533.c.s b/test/torture-s/pr38533.c.s index f84494ac0..f6c945761 100644 --- a/test/torture-s/pr38533.c.s +++ b/test/torture-s/pr38533.c.s @@ -1231,7 +1231,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.call $push0=, foo@FUNCTION br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -1246,5 +1246,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr38819.c.s b/test/torture-s/pr38819.c.s index e86592732..5e3ed84b3 100644 --- a/test/torture-s/pr38819.c.s +++ b/test/torture-s/pr38819.c.s @@ -67,5 +67,5 @@ r: .size r, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr38969.c.s b/test/torture-s/pr38969.c.s index 490b8cbb9..412e508cb 100644 --- a/test/torture-s/pr38969.c.s +++ b/test/torture-s/pr38969.c.s @@ -73,7 +73,7 @@ main: # @main i32.const $push17=, 8 i32.add $push18=, $0, $pop17 call bar@FUNCTION, $pop16, $pop18 - block + block f32.load $push3=, 24($0) f32.const $push2=, 0x1.2p3 f32.ne $push4=, $pop3, $pop2 @@ -99,5 +99,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr39100.c.s b/test/torture-s/pr39100.c.s index 0e2d3d016..c761eb4e2 100644 --- a/test/torture-s/pr39100.c.s +++ b/test/torture-s/pr39100.c.s @@ -18,8 +18,8 @@ foo: # @foo i32.store 12($pop21), $pop20 i32.const $push19=, 0 i32.store 8($8), $pop19 - block - block + block + block i32.eqz $push31=, $1 br_if 0, $pop31 # 0: down to label1 # BB#1: # %while.body.lr.ph @@ -33,12 +33,12 @@ foo: # @foo i32.add $4=, $0, $pop2 .LBB0_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push24=, 4 i32.add $2=, $1, $pop24 i32.load $3=, 4($1) - block - block + block + block i32.load8_u $push0=, 0($1) i32.const $push23=, 1 i32.and $push1=, $pop0, $pop23 @@ -123,7 +123,7 @@ main: # @main i32.store 12($2), $pop26 i32.const $push25=, 1 i32.store 8($2), $pop25 - block + block i32.const $push20=, 24 i32.add $push21=, $2, $pop20 i32.call $push24=, foo@FUNCTION, $pop21, $2 @@ -164,5 +164,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr39120.c.s b/test/torture-s/pr39120.c.s index 7d30f81fd..9ec04c7c8 100644 --- a/test/torture-s/pr39120.c.s +++ b/test/torture-s/pr39120.c.s @@ -53,7 +53,7 @@ main: # @main tee_local $push12=, $0=, $pop13 i32.store x($pop14), $pop12 call bar@FUNCTION - block + block i32.load $push0=, 0($0) i32.const $push1=, 1 i32.ne $push2=, $pop0, $pop1 @@ -83,5 +83,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr39228.c.s b/test/torture-s/pr39228.c.s index ffceb41bb..4c56efd33 100644 --- a/test/torture-s/pr39228.c.s +++ b/test/torture-s/pr39228.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block f64.const $push0=, infinity i32.call $push1=, __builtin_isinff@FUNCTION, $pop0 i32.const $push2=, 0 @@ -36,7 +36,7 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype __builtin_isinff, i32 .functype __builtin_isinfl, i32 diff --git a/test/torture-s/pr39233.c.s b/test/torture-s/pr39233.c.s index c858db429..77649bf35 100644 --- a/test/torture-s/pr39233.c.s +++ b/test/torture-s/pr39233.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -53,5 +53,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr39240.c.s b/test/torture-s/pr39240.c.s index 9f04bc61c..da46e58f7 100644 --- a/test/torture-s/pr39240.c.s +++ b/test/torture-s/pr39240.c.s @@ -195,7 +195,7 @@ foo6: # @foo6 main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push20=, -10 i32.call $push0=, bar1@FUNCTION, $pop20 i32.const $push19=, 0 @@ -303,5 +303,5 @@ l6: .size l6, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr39339.c.s b/test/torture-s/pr39339.c.s index 2e903ae13..b935b270d 100644 --- a/test/torture-s/pr39339.c.s +++ b/test/torture-s/pr39339.c.s @@ -27,7 +27,7 @@ foo: # @foo i32.or $push16=, $pop8, $pop6 tee_local $push15=, $6=, $pop16 i32.store 4($0), $pop15 - block + block i32.const $push10=, 2 i32.lt_s $push11=, $2, $pop10 br_if 0, $pop11 # 0: down to label0 @@ -40,7 +40,7 @@ foo: # @foo i32.add $2=, $5, $pop22 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load $push12=, 0($3) i32.load $push13=, 0($pop12) i32.add $push30=, $pop13, $2 @@ -117,7 +117,7 @@ main: # @main i32.const $push13=, 65 i32.const $push12=, 2 call foo@FUNCTION, $pop31, $pop13, $pop12, $0 - block + block i32.load $push14=, 20($0) i32.const $push32=, 1434451954 i32.ne $push15=, $pop14, $pop32 @@ -156,5 +156,5 @@ main: # @main .size .Lmain.e, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr39501.c.s b/test/torture-s/pr39501.c.s index 6266e8486..09f34982d 100644 --- a/test/torture-s/pr39501.c.s +++ b/test/torture-s/pr39501.c.s @@ -127,8 +127,8 @@ double_max2: # @double_max2 main: # @main .result i32 # BB#0: # %entry - block - block + block + block f32.const $push99=, 0x0p0 f32.const $push98=, -0x1p0 f32.call $push0=, float_min1@FUNCTION, $pop99, $pop98 @@ -478,6 +478,6 @@ main: # @main .size main, .Lfunc_end8-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr40022.c.s b/test/torture-s/pr40022.c.s index f19853384..690595f8f 100644 --- a/test/torture-s/pr40022.c.s +++ b/test/torture-s/pr40022.c.s @@ -36,12 +36,12 @@ bar: # @bar i32.call $push2=, foo@FUNCTION, $1 tee_local $push1=, $1=, $pop2 i32.store 0($0), $pop1 - block + block i32.eqz $push9=, $1 br_if 0, $pop9 # 0: down to label0 .LBB1_1: # %while.cond.while.cond_crit_edge # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: copy_local $0=, $1 i32.load $push4=, 0($1) tee_local $push3=, $4=, $pop4 @@ -53,12 +53,12 @@ bar: # @bar i32.call $push6=, foo@FUNCTION, $2 tee_local $push5=, $1=, $pop6 i32.store 0($0), $pop5 - block + block i32.eqz $push10=, $1 br_if 0, $pop10 # 0: down to label2 .LBB1_3: # %while.cond2.while.cond2_crit_edge # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: copy_local $0=, $1 i32.load $push8=, 0($1) tee_local $push7=, $4=, $pop8 @@ -90,7 +90,7 @@ main: # @main i32.const $push2=, f i32.const $push10=, 0 call bar@FUNCTION, $pop4, $pop3, $pop2, $pop10 - block + block i32.const $push9=, 0 i32.load $push8=, d($pop9) tee_local $push7=, $0=, $pop8 @@ -157,5 +157,5 @@ e: .size e, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr40057.c.s b/test/torture-s/pr40057.c.s index f1eb6fb23..b60181f49 100644 --- a/test/torture-s/pr40057.c.s +++ b/test/torture-s/pr40057.c.s @@ -39,7 +39,7 @@ bar: # @bar main: # @main .result i32 # BB#0: # %entry - block + block i64.const $push0=, 6042589866 i32.call $push1=, foo@FUNCTION, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -69,5 +69,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr40386.c.s b/test/torture-s/pr40386.c.s index 45cf88b88..be0438b8c 100644 --- a/test/torture-s/pr40386.c.s +++ b/test/torture-s/pr40386.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32, i32, i32, i32, i32, i32, i32, i64, i64, i64, i64, i64, i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load8_s $push125=, c($pop0) tee_local $push124=, $0=, $pop125 @@ -290,6 +290,6 @@ shift2: .size shift2, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr40404.c.s b/test/torture-s/pr40404.c.s index 249baf24d..a3105a799 100644 --- a/test/torture-s/pr40404.c.s +++ b/test/torture-s/pr40404.c.s @@ -29,4 +29,4 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr40493.c.s b/test/torture-s/pr40493.c.s index 51bc44738..5a5d7f553 100644 --- a/test/torture-s/pr40493.c.s +++ b/test/torture-s/pr40493.c.s @@ -63,4 +63,4 @@ y01: .size y01, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr40579.c.s b/test/torture-s/pr40579.c.s index fc676f689..f9cd9b372 100644 --- a/test/torture-s/pr40579.c.s +++ b/test/torture-s/pr40579.c.s @@ -26,7 +26,7 @@ main: # @main foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 4 i32.ge_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -41,5 +41,5 @@ foo: # @foo .size foo, .Lfunc_end1-foo - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr40657.c.s b/test/torture-s/pr40657.c.s index c3ccc8397..ac394722d 100644 --- a/test/torture-s/pr40657.c.s +++ b/test/torture-s/pr40657.c.s @@ -60,7 +60,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i64.call $push0=, foo@FUNCTION i32.const $push3=, 0 i64.load $push1=, v($pop3) @@ -88,6 +88,6 @@ v: .size v, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr40668.c.s b/test/torture-s/pr40668.c.s index 674c1db73..19218b776 100644 --- a/test/torture-s/pr40668.c.s +++ b/test/torture-s/pr40668.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, -1 i32.add $push15=, $0, $pop0 tee_local $push14=, $0=, $pop15 @@ -66,4 +66,4 @@ main: # @main .size .Lswitch.table, 36 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr40747.c.s b/test/torture-s/pr40747.c.s index c4b85de4a..40fae5b96 100644 --- a/test/torture-s/pr40747.c.s +++ b/test/torture-s/pr40747.c.s @@ -31,4 +31,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr41239.c.s b/test/torture-s/pr41239.c.s index f42147c19..d7c54f5b9 100644 --- a/test/torture-s/pr41239.c.s +++ b/test/torture-s/pr41239.c.s @@ -17,7 +17,7 @@ test: # @test tee_local $push20=, $3=, $pop21 i32.store __stack_pointer($pop14), $pop20 i32.load $1=, 4($0) - block + block i32.const $push0=, 8 i32.add $push1=, $0, $pop0 i32.load $push19=, 0($pop1) @@ -82,7 +82,7 @@ fn2: # @fn2 # BB#0: # %entry #APP #NO_APP - block + block br_if 0, $0 # 0: down to label1 # BB#1: # %if.end return @@ -184,6 +184,6 @@ main: # @main .size .Lmain.s, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr41317.c.s b/test/torture-s/pr41317.c.s index 6fb6e203f..f2fe35211 100644 --- a/test/torture-s/pr41317.c.s +++ b/test/torture-s/pr41317.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr41395-1.c.s b/test/torture-s/pr41395-1.c.s index 57969aa06..85c3cdee3 100644 --- a/test/torture-s/pr41395-1.c.s +++ b/test/torture-s/pr41395-1.c.s @@ -33,7 +33,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 268 i32.call $push1=, malloc@FUNCTION, $pop0 i32.const $push2=, 8 @@ -53,6 +53,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype abort, void diff --git a/test/torture-s/pr41395-2.c.s b/test/torture-s/pr41395-2.c.s index c028c2964..c5e71ab9a 100644 --- a/test/torture-s/pr41395-2.c.s +++ b/test/torture-s/pr41395-2.c.s @@ -33,7 +33,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 276 i32.call $push1=, malloc@FUNCTION, $pop0 i32.const $push2=, 16 @@ -53,6 +53,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype abort, void diff --git a/test/torture-s/pr41463.c.s b/test/torture-s/pr41463.c.s index 46a21b75d..86ea98943 100644 --- a/test/torture-s/pr41463.c.s +++ b/test/torture-s/pr41463.c.s @@ -33,7 +33,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 76 i32.call $push1=, malloc@FUNCTION, $pop0 i32.const $push2=, 1 @@ -62,6 +62,6 @@ global: .size global, 76 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype abort, void diff --git a/test/torture-s/pr41750.c.s b/test/torture-s/pr41750.c.s index fb966322b..2faa01883 100644 --- a/test/torture-s/pr41750.c.s +++ b/test/torture-s/pr41750.c.s @@ -25,14 +25,14 @@ elf64_ia64_check_relocs: # @elf64_ia64_check_relocs .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.load $push7=, 0($1) tee_local $push6=, $2=, $pop7 i32.load $push5=, 8($pop6) tee_local $push4=, $3=, $pop5 br_if 0, $pop4 # 0: down to label0 # BB#1: # %if.then.i - block + block i32.load $push9=, 4($2) tee_local $push8=, $3=, $pop9 br_if 0, $pop8 # 0: down to label1 @@ -65,7 +65,7 @@ main: # @main i32.const $push6=, 0 i32.const $push0=, hash i32.store link_info($pop6), $pop0 - block + block i32.const $push2=, abfd i32.const $push1=, link_info i32.call $push3=, elf64_ia64_check_relocs@FUNCTION, $pop2, $pop1 @@ -111,5 +111,5 @@ abfd: .size abfd, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr41917.c.s b/test/torture-s/pr41917.c.s index 9db81ff0e..e75cb9ba8 100644 --- a/test/torture-s/pr41917.c.s +++ b/test/torture-s/pr41917.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, -942519458 i32.const $push7=, 0 i32.load $push0=, a($pop7) @@ -38,5 +38,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr41919.c.s b/test/torture-s/pr41919.c.s index 90422f103..9ba2334be 100644 --- a/test/torture-s/pr41919.c.s +++ b/test/torture-s/pr41919.c.s @@ -23,4 +23,4 @@ g_23: .size g_23, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr42006.c.s b/test/torture-s/pr42006.c.s index 6fbedc6e6..5d8af6698 100644 --- a/test/torture-s/pr42006.c.s +++ b/test/torture-s/pr42006.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr42142.c.s b/test/torture-s/pr42142.c.s index 27edff377..35d4e0192 100644 --- a/test/torture-s/pr42142.c.s +++ b/test/torture-s/pr42142.c.s @@ -29,7 +29,7 @@ sort: # @sort main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 5 i32.call $push1=, sort@FUNCTION, $pop0 i32.const $push2=, 1 @@ -47,5 +47,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr42154.c.s b/test/torture-s/pr42154.c.s index 0365d6bb9..d6f3b8618 100644 --- a/test/torture-s/pr42154.c.s +++ b/test/torture-s/pr42154.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 255 i32.and $push1=, $0, $pop0 i32.const $push2=, 97 @@ -39,5 +39,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr42231.c.s b/test/torture-s/pr42231.c.s index 91ca6d1e0..77eb4a02b 100644 --- a/test/torture-s/pr42231.c.s +++ b/test/torture-s/pr42231.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.call $push1=, CallFunctionRec@FUNCTION, $pop0 i32.eqz $push8=, $pop1 @@ -17,7 +17,7 @@ main: # @main call storemax@FUNCTION, $pop2 .LBB0_2: # %CallFunction.exit end_block # label0: - block + block i32.const $push6=, 0 i32.load $push3=, max($pop6) i32.const $push4=, 10 @@ -43,7 +43,7 @@ CallFunctionRec: # @CallFunctionRec # BB#0: # %entry call storemax@FUNCTION, $0 i32.const $1=, 0 - block + block i32.eqz $push5=, $0 br_if 0, $pop5 # 0: down to label2 # BB#1: # %if.end @@ -70,7 +70,7 @@ CallFunctionRec: # @CallFunctionRec storemax: # @storemax .param i32 # BB#0: # %entry - block + block i32.const $push2=, 0 i32.load $push0=, max($pop2) i32.ge_s $push1=, $pop0, $0 @@ -93,5 +93,5 @@ max: .size max, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr42248.c.s b/test/torture-s/pr42248.c.s index 45fd78482..9d28358eb 100644 --- a/test/torture-s/pr42248.c.s +++ b/test/torture-s/pr42248.c.s @@ -7,7 +7,7 @@ check: # @check .param i32, i32 # BB#0: # %entry - block + block f64.load $push3=, 0($0) f64.load $push2=, 0($1) f64.ne $push4=, $pop3, $pop2 @@ -72,5 +72,5 @@ g1s: .size g1s, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr42269-2.c.s b/test/torture-s/pr42269-2.c.s index 8dbf8ffd2..3e36b42ec 100644 --- a/test/torture-s/pr42269-2.c.s +++ b/test/torture-s/pr42269-2.c.s @@ -43,4 +43,4 @@ s: .size s, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr42512.c.s b/test/torture-s/pr42512.c.s index 4446ae2d0..6f12c0326 100644 --- a/test/torture-s/pr42512.c.s +++ b/test/torture-s/pr42512.c.s @@ -13,7 +13,7 @@ main: # @main i32.const $1=, -1 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push10=, 65535 i32.and $push2=, $2, $pop10 i32.or $2=, $pop2, $1 @@ -28,7 +28,7 @@ main: # @main end_loop i32.const $push12=, 0 i32.store16 g_3($pop12), $2 - block + block i32.const $push3=, 65535 i32.and $push4=, $2, $pop3 i32.const $push11=, 65535 @@ -55,5 +55,5 @@ g_3: .size g_3, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr42544.c.s b/test/torture-s/pr42544.c.s index b5d021df4..0523223f5 100644 --- a/test/torture-s/pr42544.c.s +++ b/test/torture-s/pr42544.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr42570.c.s b/test/torture-s/pr42570.c.s index 690f41a36..c4b604890 100644 --- a/test/torture-s/pr42570.c.s +++ b/test/torture-s/pr42570.c.s @@ -21,4 +21,4 @@ foo: .size foo, 0 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr42614.c.s b/test/torture-s/pr42614.c.s index e2ba0c53a..e82f1db3b 100644 --- a/test/torture-s/pr42614.c.s +++ b/test/torture-s/pr42614.c.s @@ -21,7 +21,7 @@ init: # @init expect_func: # @expect_func .param i32, i32 # BB#0: # %entry - block + block i32.eqz $push0=, $0 br_if 0, $pop0 # 0: down to label0 # BB#1: # %if.end @@ -69,6 +69,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype malloc, i32, i32 .functype abort, void diff --git a/test/torture-s/pr42691.c.s b/test/torture-s/pr42691.c.s index e74367465..c4e1dad12 100644 --- a/test/torture-s/pr42691.c.s +++ b/test/torture-s/pr42691.c.s @@ -9,8 +9,8 @@ add: # @add .result i32 .local f64, f64 # BB#0: # %entry - block - block + block + block f64.load $push8=, 0($1) tee_local $push7=, $3=, $pop8 f64.load $push6=, 0($0) @@ -22,7 +22,7 @@ add: # @add i32.add $1=, $1, $pop9 .LBB0_2: # %if.end # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: f64.const $push10=, infinity f64.ne $push2=, $3, $pop10 br_if 2, $pop2 # 2: down to label0 @@ -71,8 +71,8 @@ main: # @main f64.const $1=, infinity .LBB1_1: # %if.end.i # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: f64.const $push16=, infinity f64.ne $push3=, $1, $pop16 br_if 1, $pop3 # 1: down to label3 @@ -102,5 +102,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr42721.c.s b/test/torture-s/pr42721.c.s index c5d6173b8..db324bced 100644 --- a/test/torture-s/pr42721.c.s +++ b/test/torture-s/pr42721.c.s @@ -15,7 +15,7 @@ main: # @main i32.const $push0=, 1 i32.xor $push1=, $pop2, $pop0 i32.store b($pop5), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end i32.const $push6=, 0 @@ -36,5 +36,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr42833.c.s b/test/torture-s/pr42833.c.s index 443d8f4c9..79e030f6d 100644 --- a/test/torture-s/pr42833.c.s +++ b/test/torture-s/pr42833.c.s @@ -11,7 +11,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 # BB#0: # %entry i32.const $5=, 0 i32.const $4=, 0 - block + block i32.const $push75=, 24 i32.shl $push74=, $1, $pop75 tee_local $push73=, $6=, $pop74 @@ -21,7 +21,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 # BB#1: # %if.else i32.const $push76=, 24 i32.shl $7=, $0, $pop76 - block + block i32.const $push2=, -134217729 i32.gt_s $push3=, $6, $pop2 br_if 0, $pop3 # 0: down to label1 @@ -41,7 +41,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 # BB#4: # %if.else34 i32.const $push81=, 24 i32.shr_s $4=, $7, $pop81 - block + block i32.const $push80=, -1 i32.le_s $push6=, $6, $pop80 br_if 0, $pop6 # 0: down to label2 @@ -60,7 +60,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 i32.shr_s $4=, $pop12, $pop8 .LBB0_7: # %if.end57 end_block # label0: - block + block i32.const $push87=, 16 i32.shl $push14=, $1, $pop87 i32.const $push86=, 24 @@ -72,7 +72,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 # BB#8: # %if.else68 i32.const $push88=, 16 i32.shl $7=, $0, $pop88 - block + block i32.const $push17=, -9 i32.gt_s $push18=, $6, $pop17 br_if 0, $pop18 # 0: down to label4 @@ -88,7 +88,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 # BB#11: # %if.else96 i32.const $push16=, 24 i32.shr_s $5=, $7, $pop16 - block + block i32.const $push89=, -1 i32.le_s $push21=, $6, $pop89 br_if 0, $pop21 # 0: down to label5 @@ -109,7 +109,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 end_block # label3: i32.const $7=, 0 i32.const $6=, 0 - block + block i32.const $push95=, 8 i32.shl $push29=, $1, $pop95 i32.const $push94=, 24 @@ -121,7 +121,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 # BB#15: # %if.else133 i32.const $push96=, 8 i32.shl $3=, $0, $pop96 - block + block i32.const $push31=, -9 i32.gt_s $push32=, $2, $pop31 br_if 0, $pop32 # 0: down to label7 @@ -138,7 +138,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 # BB#18: # %if.else161 i32.const $push98=, 24 i32.shr_s $6=, $3, $pop98 - block + block i32.const $push97=, -1 i32.le_s $push35=, $2, $pop97 br_if 0, $pop35 # 0: down to label8 @@ -157,7 +157,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 i32.shr_s $6=, $pop41, $pop37 .LBB0_21: # %if.end187 end_block # label6: - block + block i32.const $push102=, 24 i32.shr_s $push101=, $1, $pop102 tee_local $push100=, $1=, $pop101 @@ -165,7 +165,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 i32.gt_s $push44=, $pop100, $pop43 br_if 0, $pop44 # 0: down to label9 # BB#22: # %if.else199 - block + block i32.const $push46=, -9 i32.gt_s $push47=, $1, $pop46 br_if 0, $pop47 # 0: down to label10 @@ -181,7 +181,7 @@ helper_neon_rshl_s8: # @helper_neon_rshl_s8 # BB#25: # %if.else227 i32.const $push45=, 24 i32.shr_s $0=, $0, $pop45 - block + block i32.const $push103=, -1 i32.le_s $push50=, $1, $pop103 br_if 0, $pop50 # 0: down to label11 @@ -234,4 +234,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr43008.c.s b/test/torture-s/pr43008.c.s index b0793ea63..04f003761 100644 --- a/test/torture-s/pr43008.c.s +++ b/test/torture-s/pr43008.c.s @@ -43,7 +43,7 @@ main: # @main i32.const $push6=, 0 i32.const $push5=, 0 i32.store i($pop6), $pop5 - block + block i32.load $push4=, 0($0) br_if 0, $pop4 # 0: down to label0 # BB#1: # %if.end @@ -67,6 +67,6 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype __builtin_malloc, i32 .functype abort, void diff --git a/test/torture-s/pr43220.c.s b/test/torture-s/pr43220.c.s index 0a46dc54c..64dbbe472 100644 --- a/test/torture-s/pr43220.c.s +++ b/test/torture-s/pr43220.c.s @@ -15,7 +15,7 @@ main: # @main i32.const $2=, 0 .LBB0_1: # %lab # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push44=, 1000 i32.rem_s $push0=, $2, $pop44 i32.const $push43=, 2 @@ -85,4 +85,4 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr43236.c.s b/test/torture-s/pr43236.c.s index 0e5ed4762..88b43a5d6 100644 --- a/test/torture-s/pr43236.c.s +++ b/test/torture-s/pr43236.c.s @@ -97,7 +97,7 @@ main: # @main i32.store16 0($pop20), $pop53 i64.const $push52=, 0 i64.store 10($0):p2align=1, $pop52 - block + block i32.const $push47=, 64 i32.add $push48=, $0, $pop47 i32.const $push51=, 30 @@ -125,6 +125,6 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/pr43269.c.s b/test/torture-s/pr43269.c.s index acfffc5fd..63a4276b3 100644 --- a/test/torture-s/pr43269.c.s +++ b/test/torture-s/pr43269.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 # BB#0: # %entry call func_32@FUNCTION - block + block i32.const $push3=, 0 i32.load $push0=, g_261($pop3) i32.const $push1=, -1 @@ -32,7 +32,7 @@ func_32: # @func_32 i32.const $push1=, 0 i32.const $push0=, -1 i32.store g_261($pop1), $pop0 - block + block i32.const $push5=, 0 i32.load $push2=, g_211($pop5) i32.const $push4=, -1 @@ -43,7 +43,7 @@ func_32: # @func_32 .LBB1_2: # %if.else # =>This Inner Loop Header: Depth=1 end_block # label1: - loop # label2: + loop # label2: br 0 # 0: up to label2 .LBB1_3: end_loop @@ -79,5 +79,5 @@ g_211: .size g_211, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr43385.c.s b/test/torture-s/pr43385.c.s index adc909f5a..dc0c54376 100644 --- a/test/torture-s/pr43385.c.s +++ b/test/torture-s/pr43385.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32 # BB#0: # %entry - block + block i32.eqz $push5=, $0 br_if 0, $pop5 # 0: down to label0 # BB#1: # %entry @@ -63,7 +63,7 @@ main: # @main i32.add $push27=, $0, $pop28 tee_local $push26=, $2=, $pop27 call foo@FUNCTION, $pop29, $pop26 - block + block i32.const $push25=, 0 i32.load $push1=, e($pop25) i32.const $push24=, 1 @@ -147,5 +147,5 @@ e: .size e, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr43438.c.s b/test/torture-s/pr43438.c.s index 2b3003c49..95065d70d 100644 --- a/test/torture-s/pr43438.c.s +++ b/test/torture-s/pr43438.c.s @@ -24,4 +24,4 @@ g_9: .size g_9, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr43560.c.s b/test/torture-s/pr43560.c.s index b53fce318..1a8faf348 100644 --- a/test/torture-s/pr43560.c.s +++ b/test/torture-s/pr43560.c.s @@ -8,7 +8,7 @@ test: # @test .param i32 .local i32, i32, i32 # BB#0: # %entry - block + block i32.load $push8=, 4($0) tee_local $push7=, $3=, $pop8 i32.const $push0=, 2 @@ -19,7 +19,7 @@ test: # @test i32.add $2=, $0, $pop5 .LBB0_2: # %land.rhs # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push15=, -1 i32.add $push14=, $3, $pop15 tee_local $push13=, $3=, $pop14 @@ -77,4 +77,4 @@ s: .size s, 20 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr43629.c.s b/test/torture-s/pr43629.c.s index 9aaa47e6b..e1320e75b 100644 --- a/test/torture-s/pr43629.c.s +++ b/test/torture-s/pr43629.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push1=, 0 i32.load $push0=, flag($pop1) br_if 0, $pop0 # 0: down to label0 @@ -32,5 +32,5 @@ flag: .size flag, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr43783.c.s b/test/torture-s/pr43783.c.s index 650f187ea..c9370bb13 100644 --- a/test/torture-s/pr43783.c.s +++ b/test/torture-s/pr43783.c.s @@ -119,4 +119,4 @@ bid_Kx192: .size bid_Kx192, 768 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr43784.c.s b/test/torture-s/pr43784.c.s index 3d85c1fd1..a88b4aa13 100644 --- a/test/torture-s/pr43784.c.s +++ b/test/torture-s/pr43784.c.s @@ -18,7 +18,7 @@ main: # @main i32.const $1=, 0 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push22=, v i32.add $push0=, $1, $pop22 i32.store8 0($pop0), $1 @@ -37,8 +37,8 @@ main: # @main i32.const $1=, 0 .LBB0_3: # %for.body4 # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.add $push4=, $1, $0 i32.load8_u $push5=, 0($pop4) i32.ne $push6=, $1, $pop5 @@ -88,5 +88,5 @@ v: .size v, 260 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr43835.c.s b/test/torture-s/pr43835.c.s index 108ae3d3f..40d72dd9f 100644 --- a/test/torture-s/pr43835.c.s +++ b/test/torture-s/pr43835.c.s @@ -31,8 +31,8 @@ foo: # @foo mark_cell: # @mark_cell .param i32, i32 # BB#0: # %entry - block - block + block + block i32.load $push0=, 8($1) i32.const $push1=, 4 i32.ne $push2=, $pop0, $pop1 @@ -94,5 +94,5 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr43987.c.s b/test/torture-s/pr43987.c.s index aa8bfdbb5..0c7ea1ed2 100644 --- a/test/torture-s/pr43987.c.s +++ b/test/torture-s/pr43987.c.s @@ -46,4 +46,4 @@ B: .size B, 1024 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr44164.c.s b/test/torture-s/pr44164.c.s index c3848c772..accc067c9 100644 --- a/test/torture-s/pr44164.c.s +++ b/test/torture-s/pr44164.c.s @@ -30,7 +30,7 @@ main: # @main i32.const $push5=, 0 i32.const $push0=, 1 i32.store a($pop5), $pop0 - block + block i32.const $push1=, a i32.call $push2=, foo@FUNCTION, $pop1 i32.const $push4=, 1 @@ -57,5 +57,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr44202-1.c.s b/test/torture-s/pr44202-1.c.s index f822e4371..21aca8362 100644 --- a/test/torture-s/pr44202-1.c.s +++ b/test/torture-s/pr44202-1.c.s @@ -9,7 +9,7 @@ add512: # @add512 .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 512 i32.add $push2=, $0, $pop0 tee_local $push1=, $2=, $pop2 @@ -34,7 +34,7 @@ add513: # @add513 .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 513 i32.add $push2=, $0, $pop0 tee_local $push1=, $2=, $pop2 @@ -68,7 +68,7 @@ main: # @main i32.store 12($0), $pop17 i32.const $push16=, -1 i32.store 8($0), $pop16 - block + block i32.const $push1=, -512 i32.const $push12=, 12 i32.add $push13=, $0, $pop12 @@ -103,6 +103,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr44468.c.s b/test/torture-s/pr44468.c.s index 285a34a7a..558ea3e19 100644 --- a/test/torture-s/pr44468.c.s +++ b/test/torture-s/pr44468.c.s @@ -70,7 +70,7 @@ main: # @main i32.const $push12=, 0 i64.const $push11=, 8589934593 i64.store s+4($pop12):p2align=2, $pop11 - block + block i32.const $push10=, s i32.call $push0=, test1@FUNCTION, $pop10 i32.const $push9=, 3 @@ -115,5 +115,5 @@ s: .size s, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr44555.c.s b/test/torture-s/pr44555.c.s index c9b613cb1..714814259 100644 --- a/test/torture-s/pr44555.c.s +++ b/test/torture-s/pr44555.c.s @@ -29,4 +29,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr44575.c.s b/test/torture-s/pr44575.c.s index 6386d738d..7bf4d9138 100644 --- a/test/torture-s/pr44575.c.s +++ b/test/torture-s/pr44575.c.s @@ -21,10 +21,10 @@ check: # @check i32.const $0=, 3 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: - block - block - block + loop # label0: + block + block + block i32.const $push17=, -1 i32.add $push1=, $0, $pop17 i32.const $push16=, -2 @@ -62,7 +62,7 @@ check: # @check .LBB0_5: # %if.end # in Loop: Header=BB0_1 Depth=1 end_block # label1: - block + block br_if 0, $1 # 0: down to label4 # BB#6: # %if.end # in Loop: Header=BB0_1 Depth=1 @@ -122,7 +122,7 @@ main: # @main i32.store 4($0), $pop21 i32.const $push9=, 1 call check@FUNCTION, $pop9, $0 - block + block i32.const $push22=, 0 i32.load $push10=, fails($pop22) br_if 0, $pop10 # 0: down to label5 @@ -160,5 +160,5 @@ a: .size a, 60 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr44683.c.s b/test/torture-s/pr44683.c.s index c81e1d2ab..a69aa0ced 100644 --- a/test/torture-s/pr44683.c.s +++ b/test/torture-s/pr44683.c.s @@ -9,8 +9,8 @@ copysign_bug: # @copysign_bug .result i32 .local i32 # BB#0: # %entry - block - block + block + block f64.const $push9=, 0x0p0 f64.eq $push2=, $0, $pop9 br_if 0, $pop2 # 0: down to label1 @@ -44,7 +44,7 @@ copysign_bug: # @copysign_bug main: # @main .result i32 # BB#0: # %entry - block + block f64.const $push0=, -0x0p0 i32.call $push1=, copysign_bug@FUNCTION, $pop0 i32.const $push2=, 2 @@ -62,5 +62,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr44828.c.s b/test/torture-s/pr44828.c.s index e4c3bd3ea..bc4023c03 100644 --- a/test/torture-s/pr44828.c.s +++ b/test/torture-s/pr44828.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push7=, 0 i32.load8_u $push0=, a($pop7) i32.const $push1=, -939524096 @@ -38,5 +38,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr44852.c.s b/test/torture-s/pr44852.c.s index 54622bb77..1272ee6ab 100644 --- a/test/torture-s/pr44852.c.s +++ b/test/torture-s/pr44852.c.s @@ -13,8 +13,8 @@ sf: # @sf #NO_APP .LBB0_1: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: copy_local $push15=, $0 tee_local $push14=, $2=, $pop15 i32.const $push13=, -1 @@ -77,7 +77,7 @@ main: # @main i32.const $push32=, 0 i32.load $push7=, .Lmain.s($pop32):p2align=0 i32.store 8($0), $pop7 - block + block i32.const $push26=, 8 i32.add $push27=, $0, $pop26 i32.const $push10=, 2 @@ -124,6 +124,6 @@ main: # @main .size .L.str, 7 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/pr44858.c.s b/test/torture-s/pr44858.c.s index e94d1a10e..522bcbd11 100644 --- a/test/torture-s/pr44858.c.s +++ b/test/torture-s/pr44858.c.s @@ -42,7 +42,7 @@ main: # @main .result i32 # BB#0: # %entry i32.call $drop=, bar@FUNCTION - block + block i32.const $push3=, 0 i32.load $push0=, b($pop3) i32.const $push1=, 1 @@ -78,5 +78,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr44942.c.s b/test/torture-s/pr44942.c.s index 93ab9cd46..5c7fb5a7f 100644 --- a/test/torture-s/pr44942.c.s +++ b/test/torture-s/pr44942.c.s @@ -19,7 +19,7 @@ test1: # @test1 i32.const $push0=, 4 i32.add $push1=, $9, $pop0 i32.store 12($10), $pop1 - block + block i32.load $push2=, 0($9) i32.const $push3=, 1234 i32.ne $push4=, $pop2, $pop3 @@ -57,7 +57,7 @@ test2: # @test2 i32.const $push0=, 4 i32.add $push1=, $18, $pop0 i32.store 12($19), $pop1 - block + block i32.load $push2=, 0($18) i32.const $push3=, 1234 i32.ne $push4=, $pop2, $pop3 @@ -100,7 +100,7 @@ test3: # @test3 i32.const $push3=, 8 i32.add $push4=, $pop15, $pop3 i32.store 12($10), $pop4 - block + block f64.load $push5=, 0($9) f64.const $push6=, 0x1.348p10 f64.ne $push7=, $pop5, $pop6 @@ -143,7 +143,7 @@ test4: # @test4 i32.const $push3=, 8 i32.add $push4=, $pop15, $pop3 i32.store 12($19), $pop4 - block + block f64.load $push5=, 0($18) f64.const $push6=, 0x1.348p10 f64.ne $push7=, $pop5, $pop6 @@ -212,5 +212,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr45034.c.s b/test/torture-s/pr45034.c.s index 4d06119fb..cd36dd109 100644 --- a/test/torture-s/pr45034.c.s +++ b/test/torture-s/pr45034.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 128 i32.add $push1=, $1, $pop0 i32.const $push2=, 256 @@ -34,7 +34,7 @@ test_neg: # @test_neg i32.const $3=, 128 .LBB1_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push14=, 0 i32.const $push13=, 255 i32.and $push12=, $3, $pop13 @@ -43,8 +43,8 @@ test_neg: # @test_neg tee_local $push9=, $2=, $pop10 i32.const $push8=, 24 i32.shl $0=, $pop9, $pop8 - block - block + block + block i32.const $push7=, 128 i32.and $push0=, $2, $pop7 i32.const $push6=, 127 @@ -92,7 +92,7 @@ main: # @main i32.const $3=, 128 .LBB2_1: # %for.cond.i # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: i32.const $push14=, 0 i32.const $push13=, 255 i32.and $push12=, $3, $pop13 @@ -101,8 +101,8 @@ main: # @main tee_local $push9=, $2=, $pop10 i32.const $push8=, 24 i32.shl $0=, $pop9, $pop8 - block - block + block + block i32.const $push7=, 128 i32.and $push0=, $2, $pop7 i32.const $push6=, 127 @@ -140,5 +140,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr45070.c.s b/test/torture-s/pr45070.c.s index 44385f799..7a8c1f00c 100644 --- a/test/torture-s/pr45070.c.s +++ b/test/torture-s/pr45070.c.s @@ -22,10 +22,10 @@ main: # @main i64.store 0($2), $pop0 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.call $0=, next@FUNCTION, $2 - block + block br_if 0, $1 # 0: down to label2 # BB#2: # %for.body # in Loop: Header=BB0_1 Depth=1 @@ -37,7 +37,7 @@ main: # @main .LBB0_3: # %lor.lhs.false # in Loop: Header=BB0_1 Depth=1 end_block # label2: - block + block i32.const $push19=, 1 i32.lt_s $push3=, $1, $pop19 br_if 0, $pop3 # 0: down to label3 @@ -79,7 +79,7 @@ next: # @next .local i32, i32, i32 # BB#0: # %entry i32.const $3=, 0 - block + block i32.load $push1=, 0($0) i32.load $push0=, 4($0) i32.lt_s $push2=, $pop1, $pop0 @@ -91,8 +91,8 @@ next: # @next i32.add $2=, $0, $pop5 .LBB1_2: # %if.then # =>This Inner Loop Header: Depth=1 - block - loop # label6: + block + loop # label6: i32.load $push4=, 0($1) i32.eqz $push13=, $pop4 br_if 1, $pop13 # 1: down to label5 @@ -136,5 +136,5 @@ fetch: # @fetch .size fetch, .Lfunc_end2-fetch - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr45262.c.s b/test/torture-s/pr45262.c.s index 61f2343e1..6e49e3f02 100644 --- a/test/torture-s/pr45262.c.s +++ b/test/torture-s/pr45262.c.s @@ -50,4 +50,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr45695.c.s b/test/torture-s/pr45695.c.s index 15ab39e00..cb54d8d93 100644 --- a/test/torture-s/pr45695.c.s +++ b/test/torture-s/pr45695.c.s @@ -43,7 +43,7 @@ main: # @main i32.const $2=, 0 #APP #NO_APP - block + block i32.const $push11=, 1 i32.add $push10=, $2, $pop11 tee_local $push9=, $0=, $pop10 @@ -71,5 +71,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr46019.c.s b/test/torture-s/pr46019.c.s index 46db5a2fc..018122100 100644 --- a/test/torture-s/pr46019.c.s +++ b/test/torture-s/pr46019.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr46309.c.s b/test/torture-s/pr46309.c.s index db1e89d9b..a0b8eefe6 100644 --- a/test/torture-s/pr46309.c.s +++ b/test/torture-s/pr46309.c.s @@ -7,8 +7,8 @@ bar: # @bar .param i32 # BB#0: # %entry - block - block + block + block i32.load $push12=, 0($0) tee_local $push11=, $0=, $pop12 i32.const $push0=, -2 @@ -103,5 +103,5 @@ q: .size q, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr46316.c.s b/test/torture-s/pr46316.c.s index 906cb1869..cb5bdf992 100644 --- a/test/torture-s/pr46316.c.s +++ b/test/torture-s/pr46316.c.s @@ -32,7 +32,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i64.const $push0=, 0 i64.call $push1=, foo@FUNCTION, $pop0 i64.const $push2=, -4 @@ -50,5 +50,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr46909-1.c.s b/test/torture-s/pr46909-1.c.s index 5660f7454..efa8060ae 100644 --- a/test/torture-s/pr46909-1.c.s +++ b/test/torture-s/pr46909-1.c.s @@ -37,8 +37,8 @@ main: # @main i32.const $1=, -14 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.const $push11=, 4 i32.add $push4=, $1, $pop11 i32.call $push5=, foo@FUNCTION, $pop4 @@ -72,5 +72,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr46909-2.c.s b/test/torture-s/pr46909-2.c.s index f773e2670..bce6f2013 100644 --- a/test/torture-s/pr46909-2.c.s +++ b/test/torture-s/pr46909-2.c.s @@ -9,8 +9,8 @@ foo: # @foo .result i32 .local i32 # BB#0: # %entry - block - block + block + block i32.const $push0=, 13 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -39,8 +39,8 @@ main: # @main i32.const $0=, -10 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.call $push6=, foo@FUNCTION, $0 i32.const $push13=, 1 i32.eqz $push2=, $0 @@ -75,5 +75,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr47148.c.s b/test/torture-s/pr47148.c.s index be3a00afb..8e6439f38 100644 --- a/test/torture-s/pr47148.c.s +++ b/test/torture-s/pr47148.c.s @@ -24,4 +24,4 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr47155.c.s b/test/torture-s/pr47155.c.s index 948508cf8..32d7098a3 100644 --- a/test/torture-s/pr47155.c.s +++ b/test/torture-s/pr47155.c.s @@ -35,4 +35,4 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr47237.c.s b/test/torture-s/pr47237.c.s index 70e0e1977..89a379e9f 100644 --- a/test/torture-s/pr47237.c.s +++ b/test/torture-s/pr47237.c.s @@ -22,7 +22,7 @@ main: # @main foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 5 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -37,7 +37,7 @@ foo: # @foo .size foo, .Lfunc_end1-foo - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype __builtin_apply, i32 .functype __builtin_apply_args, i32 .functype abort, void diff --git a/test/torture-s/pr47299.c.s b/test/torture-s/pr47299.c.s index d84ad1435..dee0a91c1 100644 --- a/test/torture-s/pr47299.c.s +++ b/test/torture-s/pr47299.c.s @@ -22,7 +22,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 64 i32.call $push1=, foo@FUNCTION, $pop0 i32.const $push2=, 16320 @@ -40,5 +40,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr47337.c.s b/test/torture-s/pr47337.c.s index 03d987886..a76efb9c4 100644 --- a/test/torture-s/pr47337.c.s +++ b/test/torture-s/pr47337.c.s @@ -15,7 +15,7 @@ main: # @main i32.const $1=, -1024 .LBB0_1: # %for.cond2.preheader # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push44=, a+1024 i32.add $push3=, $1, $pop44 i32.const $push43=, 1 @@ -29,7 +29,7 @@ main: # @main i32.const $push46=, 0 i32.const $push45=, 0 i32.store d($pop46), $pop45 - block + block i32.eqz $push71=, $0 br_if 0, $pop71 # 0: down to label1 # BB#3: # %fnx.exit @@ -144,5 +144,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/pr47538.c.s b/test/torture-s/pr47538.c.s index 613bfcfd8..fe20e35eb 100644 --- a/test/torture-s/pr47538.c.s +++ b/test/torture-s/pr47538.c.s @@ -16,7 +16,7 @@ foo: # @foo f64.store 8($0), $pop29 i32.load $5=, 16($0) f64.const $11=, 0x0p0 - block + block i32.load $push28=, 20($1) tee_local $push27=, $2=, $pop28 i32.eqz $push53=, $pop27 @@ -26,7 +26,7 @@ foo: # @foo f64.const $push2=, 0x1p-2 f64.mul $4=, $pop1, $pop2 i32.load $6=, 16($1) - block + block i32.const $push0=, 1 i32.add $push34=, $2, $pop0 tee_local $push33=, $3=, $pop34 @@ -43,8 +43,8 @@ foo: # @foo return .LBB0_3: # %for.cond.preheader end_block # label1: - block - block + block + block i32.const $push5=, -1 i32.add $push38=, $2, $pop5 tee_local $push37=, $7=, $pop38 @@ -59,7 +59,7 @@ foo: # @foo i32.const $9=, 1 .LBB0_5: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: f64.load $push8=, 0($1) i32.const $push47=, 16 i32.add $push6=, $1, $pop47 @@ -193,7 +193,7 @@ main: # @main i32.const $push112=, 64 i32.add $push113=, $2, $pop112 call foo@FUNCTION, $pop111, $pop113 - block + block f64.load $push24=, 0($2) f64.const $push23=, 0x0p0 f64.ne $push25=, $pop24, $pop23 @@ -389,5 +389,5 @@ main: # @main .size .Lmain.e, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr47925.c.s b/test/torture-s/pr47925.c.s index 04242cd08..bce54834d 100644 --- a/test/torture-s/pr47925.c.s +++ b/test/torture-s/pr47925.c.s @@ -23,14 +23,14 @@ foo: # @foo .result i32 # BB#0: # %entry call bar@FUNCTION, $1, $1 - block + block i32.const $push0=, 1 i32.lt_s $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label0 # BB#1: # %for.body.preheader .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load $0=, 0($0) i32.const $push4=, -1 i32.add $push3=, $1, $pop4 @@ -78,4 +78,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr48197.c.s b/test/torture-s/pr48197.c.s index 7e85d2db1..5265fa377 100644 --- a/test/torture-s/pr48197.c.s +++ b/test/torture-s/pr48197.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr48571-1.c.s b/test/torture-s/pr48571-1.c.s index 526ab6f16..774186c91 100644 --- a/test/torture-s/pr48571-1.c.s +++ b/test/torture-s/pr48571-1.c.s @@ -12,7 +12,7 @@ bar: # @bar i32.const $0=, 4 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push10=, c i32.add $push1=, $0, $pop10 i32.const $push9=, 1 @@ -43,7 +43,7 @@ main: # @main i32.const $0=, -2496 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push9=, c+2496 i32.add $push0=, $0, $pop9 i32.const $push8=, 1 @@ -60,8 +60,8 @@ main: # @main i32.const $1=, 1 .LBB1_3: # %for.body3 # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.load $push1=, 0($0) i32.ne $push2=, $pop1, $1 br_if 1, $pop2 # 1: down to label2 @@ -99,5 +99,5 @@ c: .size c, 2496 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr48717.c.s b/test/torture-s/pr48717.c.s index c65ad9bfc..3bf739c6e 100644 --- a/test/torture-s/pr48717.c.s +++ b/test/torture-s/pr48717.c.s @@ -57,7 +57,7 @@ main: # @main i32.and $push7=, $pop2, $pop3 tee_local $push6=, $0=, $pop7 i32.store v($pop11), $pop6 - block + block i32.const $push5=, 65535 i32.ne $push4=, $0, $pop5 br_if 0, $pop4 # 0: down to label0 @@ -91,5 +91,5 @@ w: .size w, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr48809.c.s b/test/torture-s/pr48809.c.s index f9f2fc7f2..a869347b8 100644 --- a/test/torture-s/pr48809.c.s +++ b/test/torture-s/pr48809.c.s @@ -10,40 +10,40 @@ foo: # @foo .local i32, i32 # BB#0: # %entry i32.const $2=, 0 - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block i32.const $push0=, 62 i32.add $push37=, $0, $pop0 tee_local $push36=, $1=, $pop37 @@ -51,7 +51,7 @@ foo: # @foo i32.gt_u $push2=, $pop36, $pop1 br_if 0, $pop2 # 0: down to label33 # BB#1: # %entry - block + block br_table $1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 4, 0, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 34, 0 # 0: down to label34 # 1: down to label33 # 2: down to label32 @@ -243,4 +243,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr48814-1.c.s b/test/torture-s/pr48814-1.c.s index 608ed4695..fadf81a31 100644 --- a/test/torture-s/pr48814-1.c.s +++ b/test/torture-s/pr48814-1.c.s @@ -43,7 +43,7 @@ main: # @main i32.add $push12=, $1, $pop5 tee_local $push11=, $0=, $pop12 i32.store count($pop13), $pop11 - block + block i32.const $push10=, 2 i32.ne $push6=, $0, $pop10 br_if 0, $pop6 # 0: down to label0 @@ -86,5 +86,5 @@ count: .size count, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr48814-2.c.s b/test/torture-s/pr48814-2.c.s index 36a7a2be5..d1a3f3e65 100644 --- a/test/torture-s/pr48814-2.c.s +++ b/test/torture-s/pr48814-2.c.s @@ -45,7 +45,7 @@ main: # @main i32.const $push10=, arr i32.add $push3=, $pop2, $pop10 i32.store 0($pop3), $2 - block + block br_if 0, $1 # 0: down to label0 # BB#1: # %lor.lhs.false i32.const $push21=, 2 @@ -89,5 +89,5 @@ count: .size count, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr48973-1.c.s b/test/torture-s/pr48973-1.c.s index 9290ab3d9..0f87fa21b 100644 --- a/test/torture-s/pr48973-1.c.s +++ b/test/torture-s/pr48973-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, -1 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -41,7 +41,7 @@ main: # @main tee_local $push6=, $0=, $pop7 i32.or $push5=, $pop4, $pop6 i32.store8 s($pop10), $pop5 - block + block i32.eqz $push12=, $0 br_if 0, $pop12 # 0: down to label1 # BB#1: # %foo.exit @@ -74,5 +74,5 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr48973-2.c.s b/test/torture-s/pr48973-2.c.s index 610cf1e70..eaaea9f25 100644 --- a/test/torture-s/pr48973-2.c.s +++ b/test/torture-s/pr48973-2.c.s @@ -20,7 +20,7 @@ main: # @main tee_local $push8=, $0=, $pop9 i32.or $push5=, $pop4, $pop8 i32.store8 s($pop12), $pop5 - block + block i32.const $push6=, 1 i32.ne $push7=, $0, $pop6 br_if 0, $pop7 # 0: down to label0 @@ -54,5 +54,5 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr49039.c.s b/test/torture-s/pr49039.c.s index bb87c9c82..46146f215 100644 --- a/test/torture-s/pr49039.c.s +++ b/test/torture-s/pr49039.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -19,7 +19,7 @@ foo: # @foo # BB#2: # %if.end i32.gt_u $push4=, $0, $1 i32.select $2=, $0, $1, $pop4 - block + block i32.lt_u $push5=, $0, $1 i32.select $push6=, $0, $1, $pop5 i32.const $push17=, 1 @@ -61,7 +61,7 @@ main: # @main i32.const $push1=, -2 i32.const $push0=, 1 call foo@FUNCTION, $pop1, $pop0 - block + block i32.const $push5=, 0 i32.load $push2=, cnt($pop5) i32.const $push3=, 2 @@ -88,5 +88,5 @@ cnt: .size cnt, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr49073.c.s b/test/torture-s/pr49073.c.s index b988ce7f0..9d3b3b058 100644 --- a/test/torture-s/pr49073.c.s +++ b/test/torture-s/pr49073.c.s @@ -12,11 +12,11 @@ main: # @main i32.const $1=, a+4 .LBB0_1: # %do.body # =>This Inner Loop Header: Depth=1 - block - block - loop # label2: + block + block + loop # label2: i32.load $0=, 0($1) - block + block i32.const $push10=, 1 i32.and $push0=, $2, $pop10 i32.eqz $push18=, $pop0 @@ -52,7 +52,7 @@ main: # @main i32.store c($pop4), $pop15 .LBB0_6: # %do.end end_block # label0: - block + block i32.const $push7=, 1 i32.ne $push8=, $0, $pop7 br_if 0, $pop8 # 0: down to label4 @@ -92,5 +92,5 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr49123.c.s b/test/torture-s/pr49123.c.s index 9959c923a..5f2542210 100644 --- a/test/torture-s/pr49123.c.s +++ b/test/torture-s/pr49123.c.s @@ -27,4 +27,4 @@ s.0: .size s.0, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr49161.c.s b/test/torture-s/pr49161.c.s index 1b28ec21c..b875b3789 100644 --- a/test/torture-s/pr49161.c.s +++ b/test/torture-s/pr49161.c.s @@ -15,7 +15,7 @@ bar: # @bar i32.const $push1=, 1 i32.add $push2=, $pop4, $pop1 i32.store c($pop0), $pop2 - block + block i32.ne $push3=, $1, $0 br_if 0, $pop3 # 0: down to label0 # BB#1: # %if.end @@ -35,10 +35,10 @@ bar: # @bar foo: # @foo .param i32 # BB#0: # %entry - block - block - block - block + block + block + block + block i32.const $push0=, -3 i32.add $push1=, $0, $pop0 i32.const $push2=, 2 @@ -90,7 +90,7 @@ main: # @main # BB#0: # %entry i32.const $push0=, 3 call foo@FUNCTION, $pop0 - block + block i32.const $push4=, 0 i32.load $push1=, c($pop4) i32.const $push3=, 3 @@ -117,5 +117,5 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr49186.c.s b/test/torture-s/pr49186.c.s index 170af0b9e..496dd83ca 100644 --- a/test/torture-s/pr49186.c.s +++ b/test/torture-s/pr49186.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr49218.c.s b/test/torture-s/pr49218.c.s index 982166285..53d6805e6 100644 --- a/test/torture-s/pr49218.c.s +++ b/test/torture-s/pr49218.c.s @@ -18,7 +18,7 @@ main: # @main i32.const $push26=, 0 f32.load $push0=, f($pop26) call __fixsfti@FUNCTION, $4, $pop0 - block + block i64.load $push25=, 0($4) tee_local $push24=, $2=, $pop25 i64.const $push4=, 10 @@ -35,7 +35,7 @@ main: # @main # BB#1: # %do.body.preheader .LBB0_2: # %do.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i64.const $push36=, 1 i64.add $push35=, $2, $pop36 tee_local $push34=, $0=, $pop35 @@ -78,4 +78,4 @@ f: .size f, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr49279.c.s b/test/torture-s/pr49279.c.s index 07f768f3d..b879936dd 100644 --- a/test/torture-s/pr49279.c.s +++ b/test/torture-s/pr49279.c.s @@ -71,7 +71,7 @@ main: # @main i32.sub $push16=, $pop5, $pop6 tee_local $push15=, $0=, $pop16 i32.store __stack_pointer($pop7), $pop15 - block + block i32.const $push11=, 12 i32.add $push12=, $0, $pop11 i32.const $push13=, 8 @@ -96,5 +96,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr49281.c.s b/test/torture-s/pr49281.c.s index 7d1dd3382..9f9d5e8c5 100644 --- a/test/torture-s/pr49281.c.s +++ b/test/torture-s/pr49281.c.s @@ -41,7 +41,7 @@ bar: # @bar main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 43 i32.call $push1=, foo@FUNCTION, $pop0 i32.const $push2=, 172 @@ -89,5 +89,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr49390.c.s b/test/torture-s/pr49390.c.s index bade72e60..8aa14a3cc 100644 --- a/test/torture-s/pr49390.c.s +++ b/test/torture-s/pr49390.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32, i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 4 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -97,12 +97,12 @@ test: # @test i32.const $push56=, 8 i32.add $push57=, $7, $pop56 copy_local $5=, $pop57 - block + block i32.eqz $push82=, $0 br_if 0, $pop82 # 0: down to label1 # BB#1: # %if.else - block - block + block + block i32.load $push65=, 4($0) tee_local $push64=, $6=, $pop65 i32.const $push5=, 8191 @@ -128,7 +128,7 @@ test: # @test copy_local $5=, $0 .LBB3_5: # %if.end7 end_block # label1: - block + block i32.call $push14=, baz@FUNCTION, $5 i32.eqz $push83=, $pop14 br_if 0, $pop83 # 0: down to label4 @@ -145,8 +145,8 @@ test: # @test i32.const $push18=, 1 i32.shr_u $push19=, $pop17, $pop18 i32.select $0=, $pop21, $pop20, $pop19 - block - block + block + block i32.load $push69=, 4($5) tee_local $push68=, $3=, $pop69 i32.const $push22=, 8191 @@ -173,7 +173,7 @@ test: # @test copy_local $6=, $0 .LBB3_10: # %if.end24 end_block # label5: - block + block i32.const $push28=, 1 i32.and $push29=, $2, $pop28 i32.eqz $push85=, $pop29 @@ -210,7 +210,7 @@ test: # @test i32.lt_u $push35=, $pop76, $pop74 br_if 0, $pop35 # 0: down to label4 # BB#14: # %land.lhs.true41 - block + block i32.ne $push36=, $2, $5 br_if 0, $pop36 # 0: down to label8 # BB#15: # %lor.lhs.false47 @@ -253,7 +253,7 @@ main: # @main #APP #NO_APP call test@FUNCTION, $0 - block + block i32.const $push5=, 0 i32.load $push2=, v($pop5) i32.const $push3=, 16384 @@ -307,5 +307,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr49419.c.s b/test/torture-s/pr49419.c.s index a782ddf7c..dde267144 100644 --- a/test/torture-s/pr49419.c.s +++ b/test/torture-s/pr49419.c.s @@ -10,8 +10,8 @@ foo: # @foo .local i32, i32, i32 # BB#0: # %entry i32.const $6=, 0 - block - block + block + block i32.const $push0=, -1 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -19,7 +19,7 @@ foo: # @foo i32.const $5=, 0 i32.const $push23=, 0 i32.load $4=, t($pop23) - block + block i32.const $push3=, 1 i32.lt_s $push4=, $3, $pop3 br_if 0, $pop4 # 0: down to label2 @@ -35,7 +35,7 @@ foo: # @foo copy_local $6=, $0 .LBB0_4: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push26=, 1 i32.add $push25=, $5, $pop26 tee_local $push24=, $5=, $pop25 @@ -60,7 +60,7 @@ foo: # @foo i32.eq $push16=, $5, $3 br_if 1, $pop16 # 1: down to label0 # BB#7: # %if.end7 - block + block i32.const $push31=, 1 i32.lt_s $push17=, $5, $pop31 br_if 0, $pop17 # 0: down to label4 @@ -72,7 +72,7 @@ foo: # @foo i32.add $6=, $2, $pop19 .LBB0_9: # %for.body10 # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.const $push40=, 12 i32.mul $push20=, $0, $pop40 i32.add $push39=, $4, $pop20 @@ -132,7 +132,7 @@ main: # @main i32.const $push38=, 0 i32.store t($pop38), $0 i32.const $3=, 1 - block + block i32.load $push2=, 12($0) i32.const $push37=, 1 i32.ne $push3=, $pop2, $pop37 @@ -142,8 +142,8 @@ main: # @main i32.const $3=, 1 .LBB1_2: # %for.body.i.for.body.i_crit_edge # =>This Inner Loop Header: Depth=1 - block - loop # label8: + block + loop # label8: i32.const $push47=, 1 i32.add $1=, $4, $pop47 i32.const $push46=, 2 @@ -173,9 +173,9 @@ main: # @main i32.add $3=, $1, $pop12 .LBB1_5: # %for.end.i end_block # label6: - block - block - block + block + block + block i32.const $push13=, 3 i32.eq $push14=, $3, $pop13 br_if 0, $pop14 # 0: down to label11 @@ -193,7 +193,7 @@ main: # @main i32.const $push55=, 2 i32.store 0($pop56), $pop55 i32.const $5=, 1 - block + block i32.const $push54=, 2 i32.lt_s $push18=, $3, $pop54 br_if 0, $pop18 # 0: down to label12 @@ -203,7 +203,7 @@ main: # @main i32.const $5=, 1 .LBB1_9: # %for.body10.i.for.body10.i_crit_edge # =>This Inner Loop Header: Depth=1 - loop # label13: + loop # label13: i32.const $push66=, 12 i32.mul $push19=, $5, $pop66 i32.add $push65=, $0, $pop19 @@ -266,5 +266,5 @@ t: .size t, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr49644.c.s b/test/torture-s/pr49644.c.s index da1203739..9598ee73e 100644 --- a/test/torture-s/pr49644.c.s +++ b/test/torture-s/pr49644.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr49712.c.s b/test/torture-s/pr49712.c.s index 6999ffd44..e8f0922a0 100644 --- a/test/torture-s/pr49712.c.s +++ b/test/torture-s/pr49712.c.s @@ -19,7 +19,7 @@ foo: # @foo bar: # @bar .result i32 # BB#0: # %entry - block + block i32.const $push4=, 0 i32.load $push0=, d($pop4) i32.const $push3=, 0 @@ -51,7 +51,7 @@ main: # @main i32.const $push6=, 0 i32.const $push5=, 0 i32.store b($pop6), $pop5 - block + block i32.const $push4=, 0 i32.load $push0=, c($pop4) i32.eqz $push18=, $pop0 @@ -63,7 +63,7 @@ main: # @main i32.lt_s $0=, $pop1, $pop7 .LBB2_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push15=, 1 i32.and $push2=, $0, $pop15 i32.eqz $push19=, $pop2 @@ -139,4 +139,4 @@ a: .size a, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr49768.c.s b/test/torture-s/pr49768.c.s index 587e96acc..d7b33f2c1 100644 --- a/test/torture-s/pr49768.c.s +++ b/test/torture-s/pr49768.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr49886.c.s b/test/torture-s/pr49886.c.s index 5fba2242d..b2fdf3154 100644 --- a/test/torture-s/pr49886.c.s +++ b/test/torture-s/pr49886.c.s @@ -52,16 +52,16 @@ mark_cell: # @mark_cell .param i32 .local i32 # BB#0: # %entry - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block i32.eqz $push49=, $0 br_if 0, $pop49 # 0: down to label9 # BB#1: # %entry @@ -227,5 +227,5 @@ gi: .size gi, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr51023.c.s b/test/torture-s/pr51023.c.s index 9448b5358..d5f42a3da 100644 --- a/test/torture-s/pr51023.c.s +++ b/test/torture-s/pr51023.c.s @@ -31,4 +31,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr51323.c.s b/test/torture-s/pr51323.c.s index 77ab2bf30..06c5794e5 100644 --- a/test/torture-s/pr51323.c.s +++ b/test/torture-s/pr51323.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32, i32 # BB#0: # %entry - block + block i32.const $push1=, 9 i32.ne $push2=, $2, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -116,5 +116,5 @@ v: .size v, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr51466.c.s b/test/torture-s/pr51466.c.s index 27fc8242b..ca2f13181 100644 --- a/test/torture-s/pr51466.c.s +++ b/test/torture-s/pr51466.c.s @@ -86,7 +86,7 @@ main: # @main # BB#0: # %entry i32.const $push0=, 3 i32.call $drop=, foo@FUNCTION, $pop0 - block + block i32.const $push1=, 2 i32.call $push2=, bar@FUNCTION, $pop1 i32.const $push12=, 8 @@ -116,5 +116,5 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr51581-1.c.s b/test/torture-s/pr51581-1.c.s index 2fa6e24b7..66d7e4018 100644 --- a/test/torture-s/pr51581-1.c.s +++ b/test/torture-s/pr51581-1.c.s @@ -10,7 +10,7 @@ f1: # @f1 i32.const $0=, -16384 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push9=, c+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, a+16384 @@ -40,7 +40,7 @@ f2: # @f2 i32.const $0=, -16384 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push9=, d+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, b+16384 @@ -70,7 +70,7 @@ f3: # @f3 i32.const $0=, -16384 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push9=, c+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, a+16384 @@ -100,7 +100,7 @@ f4: # @f4 i32.const $0=, -16384 .LBB3_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push9=, d+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, b+16384 @@ -130,7 +130,7 @@ f5: # @f5 i32.const $0=, -16384 .LBB4_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: i32.const $push9=, c+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, a+16384 @@ -160,7 +160,7 @@ f6: # @f6 i32.const $0=, -16384 .LBB5_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.const $push9=, d+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, b+16384 @@ -190,7 +190,7 @@ f7: # @f7 i32.const $1=, -16384 .LBB6_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label6: + loop # label6: i32.const $push17=, c+16384 i32.add $push7=, $1, $pop17 i32.const $push16=, a+16384 @@ -228,7 +228,7 @@ f8: # @f8 i32.const $0=, -16384 .LBB7_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label7: + loop # label7: i32.const $push11=, d+16384 i32.add $push0=, $0, $pop11 i32.const $push10=, b+16384 @@ -260,7 +260,7 @@ f9: # @f9 i32.const $1=, -16384 .LBB8_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label8: + loop # label8: i32.const $push17=, c+16384 i32.add $push7=, $1, $pop17 i32.const $push16=, a+16384 @@ -298,7 +298,7 @@ f10: # @f10 i32.const $0=, -16384 .LBB9_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label9: + loop # label9: i32.const $push11=, d+16384 i32.add $push0=, $0, $pop11 i32.const $push10=, b+16384 @@ -330,7 +330,7 @@ f11: # @f11 i32.const $1=, -16384 .LBB10_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label10: + loop # label10: i32.const $push17=, c+16384 i32.add $push7=, $1, $pop17 i32.const $push16=, a+16384 @@ -368,7 +368,7 @@ f12: # @f12 i32.const $1=, -16384 .LBB11_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label11: + loop # label11: i32.const $push21=, d+16384 i32.add $push8=, $1, $pop21 i32.const $push20=, b+16384 @@ -412,7 +412,7 @@ main: # @main i32.const $0=, -16384 .LBB12_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label12: + loop # label12: #APP #NO_APP i32.const $push91=, b+16384 @@ -446,13 +446,13 @@ main: # @main i32.const $0=, 0 .LBB12_3: # %for.body4 # =>This Inner Loop Header: Depth=1 - block - block - block - block - block - block - loop # label19: + block + block + block + block + block + block + loop # label19: i32.const $push97=, c i32.add $push9=, $1, $pop97 i32.load $push10=, 0($pop9) @@ -493,7 +493,7 @@ main: # @main i32.const $0=, 0 .LBB12_7: # %for.body17 # =>This Inner Loop Header: Depth=1 - loop # label20: + loop # label20: i32.const $push108=, c i32.add $push22=, $1, $pop108 i32.load $push23=, 0($pop22) @@ -534,7 +534,7 @@ main: # @main i32.const $0=, 0 .LBB12_11: # %for.body34 # =>This Inner Loop Header: Depth=1 - loop # label21: + loop # label21: i32.const $push119=, c i32.add $push35=, $1, $pop119 i32.load $push36=, 0($pop35) @@ -575,7 +575,7 @@ main: # @main i32.const $0=, 0 .LBB12_15: # %for.body51 # =>This Inner Loop Header: Depth=1 - loop # label22: + loop # label22: i32.const $push130=, c i32.add $push48=, $1, $pop130 i32.load $push49=, 0($pop48) @@ -616,7 +616,7 @@ main: # @main i32.const $0=, 0 .LBB12_19: # %for.body68 # =>This Inner Loop Header: Depth=1 - loop # label23: + loop # label23: i32.const $push141=, c i32.add $push61=, $1, $pop141 i32.load $push62=, 0($pop61) @@ -657,7 +657,7 @@ main: # @main i32.const $0=, 0 .LBB12_23: # %for.body85 # =>This Inner Loop Header: Depth=1 - loop # label24: + loop # label24: i32.const $push152=, c i32.add $push74=, $1, $pop152 i32.load $push75=, 0($pop74) @@ -759,5 +759,5 @@ d: .size d, 16384 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr51581-2.c.s b/test/torture-s/pr51581-2.c.s index a487f6f25..d8a5872b3 100644 --- a/test/torture-s/pr51581-2.c.s +++ b/test/torture-s/pr51581-2.c.s @@ -10,7 +10,7 @@ f1: # @f1 i32.const $0=, -16384 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push9=, c+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, a+16384 @@ -40,7 +40,7 @@ f2: # @f2 i32.const $0=, -16384 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push9=, d+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, b+16384 @@ -70,7 +70,7 @@ f3: # @f3 i32.const $0=, -16384 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push9=, c+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, a+16384 @@ -100,7 +100,7 @@ f4: # @f4 i32.const $0=, -16384 .LBB3_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push9=, d+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, b+16384 @@ -130,7 +130,7 @@ f5: # @f5 i32.const $0=, -16384 .LBB4_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label4: + loop # label4: i32.const $push9=, c+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, a+16384 @@ -160,7 +160,7 @@ f6: # @f6 i32.const $0=, -16384 .LBB5_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.const $push9=, d+16384 i32.add $push0=, $0, $pop9 i32.const $push8=, b+16384 @@ -190,7 +190,7 @@ f7: # @f7 i32.const $1=, -16384 .LBB6_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label6: + loop # label6: i32.const $push20=, c+16384 i32.add $push9=, $1, $pop20 i32.const $push19=, a+16384 @@ -231,7 +231,7 @@ f8: # @f8 i32.const $1=, -16384 .LBB7_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label7: + loop # label7: i32.const $push17=, d+16384 i32.add $push7=, $1, $pop17 i32.const $push16=, b+16384 @@ -269,7 +269,7 @@ f9: # @f9 i32.const $1=, -16384 .LBB8_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label8: + loop # label8: i32.const $push20=, c+16384 i32.add $push9=, $1, $pop20 i32.const $push19=, a+16384 @@ -310,7 +310,7 @@ f10: # @f10 i32.const $1=, -16384 .LBB9_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label9: + loop # label9: i32.const $push17=, d+16384 i32.add $push7=, $1, $pop17 i32.const $push16=, b+16384 @@ -348,7 +348,7 @@ f11: # @f11 i32.const $1=, -16384 .LBB10_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label10: + loop # label10: i32.const $push20=, c+16384 i32.add $push9=, $1, $pop20 i32.const $push19=, a+16384 @@ -389,7 +389,7 @@ f12: # @f12 i32.const $2=, -16384 .LBB11_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label11: + loop # label11: i32.const $push24=, d+16384 i32.add $push10=, $2, $pop24 i32.const $push23=, b+16384 @@ -436,7 +436,7 @@ main: # @main i32.const $0=, -16384 .LBB12_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label12: + loop # label12: #APP #NO_APP i32.const $push91=, b+16384 @@ -470,13 +470,13 @@ main: # @main i32.const $0=, 0 .LBB12_3: # %for.body4 # =>This Inner Loop Header: Depth=1 - block - block - block - block - block - block - loop # label19: + block + block + block + block + block + block + loop # label19: i32.const $push97=, c i32.add $push9=, $1, $pop97 i32.load $push10=, 0($pop9) @@ -517,7 +517,7 @@ main: # @main i32.const $0=, 0 .LBB12_7: # %for.body17 # =>This Inner Loop Header: Depth=1 - loop # label20: + loop # label20: i32.const $push108=, c i32.add $push22=, $1, $pop108 i32.load $push23=, 0($pop22) @@ -558,7 +558,7 @@ main: # @main i32.const $0=, 0 .LBB12_11: # %for.body34 # =>This Inner Loop Header: Depth=1 - loop # label21: + loop # label21: i32.const $push119=, c i32.add $push35=, $1, $pop119 i32.load $push36=, 0($pop35) @@ -599,7 +599,7 @@ main: # @main i32.const $0=, 0 .LBB12_15: # %for.body51 # =>This Inner Loop Header: Depth=1 - loop # label22: + loop # label22: i32.const $push130=, c i32.add $push48=, $1, $pop130 i32.load $push49=, 0($pop48) @@ -640,7 +640,7 @@ main: # @main i32.const $0=, 0 .LBB12_19: # %for.body68 # =>This Inner Loop Header: Depth=1 - loop # label23: + loop # label23: i32.const $push141=, c i32.add $push61=, $1, $pop141 i32.load $push62=, 0($pop61) @@ -681,7 +681,7 @@ main: # @main i32.const $0=, 0 .LBB12_23: # %for.body85 # =>This Inner Loop Header: Depth=1 - loop # label24: + loop # label24: i32.const $push152=, c i32.add $push74=, $1, $pop152 i32.load $push75=, 0($pop74) @@ -783,5 +783,5 @@ d: .size d, 16384 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr51877.c.s b/test/torture-s/pr51877.c.s index 0458d5392..a31c82f10 100644 --- a/test/torture-s/pr51877.c.s +++ b/test/torture-s/pr51877.c.s @@ -54,8 +54,8 @@ foo: # @foo i32.sub $push19=, $pop8, $pop9 tee_local $push18=, $2=, $pop19 i32.store __stack_pointer($pop10), $pop18 - block - block + block + block i32.const $push0=, 6 i32.ne $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -117,7 +117,7 @@ main: # @main i32.const $push3=, b i32.const $push59=, 36 i32.call $drop=, memcpy@FUNCTION, $pop3, $0, $pop59 - block + block i32.const $push58=, 0 i32.load $push4=, a($pop58) i32.const $push5=, 1 @@ -242,5 +242,5 @@ b: .size b, 36 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr51933.c.s b/test/torture-s/pr51933.c.s index 1232d93a7..c762d62cd 100644 --- a/test/torture-s/pr51933.c.s +++ b/test/torture-s/pr51933.c.s @@ -22,7 +22,7 @@ bar: # @bar .result i32 .local i32, i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load8_u $push1=, v1($pop0) br_if 0, $pop1 # 0: down to label0 @@ -30,7 +30,7 @@ bar: # @bar call foo@FUNCTION .LBB1_2: # %for.cond.preheader end_block # label0: - block + block i32.const $push11=, 1 i32.lt_s $push2=, $0, $pop11 br_if 0, $pop2 # 0: down to label1 @@ -39,7 +39,7 @@ bar: # @bar copy_local $5=, $2 .LBB1_4: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.load16_u $push22=, 0($1) tee_local $push21=, $3=, $pop22 i32.const $push20=, v2 @@ -91,7 +91,7 @@ main: # @main i32.const $1=, 0 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push39=, v3 i32.add $push0=, $1, $pop39 i32.const $push38=, 1 @@ -142,7 +142,7 @@ main: # @main i32.const $push28=, 48 i32.add $push29=, $2, $pop28 i32.call $drop=, bar@FUNCTION, $pop17, $2, $pop29 - block + block i32.const $push30=, 48 i32.add $push31=, $2, $pop30 i32.const $push19=, .L.str @@ -191,6 +191,6 @@ v3: .size .L.str, 18 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/pr52129.c.s b/test/torture-s/pr52129.c.s index 86c2874aa..973ee0821 100644 --- a/test/torture-s/pr52129.c.s +++ b/test/torture-s/pr52129.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, t+2 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -127,5 +127,5 @@ t: .size .Lmain.s, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr52209.c.s b/test/torture-s/pr52209.c.s index 8109c6d31..b4f592b0c 100644 --- a/test/torture-s/pr52209.c.s +++ b/test/torture-s/pr52209.c.s @@ -19,7 +19,7 @@ main: # @main i32.const $push3=, -1 i32.xor $push4=, $pop2, $pop3 i32.store b($pop11), $pop4 - block + block i32.const $push5=, 1 i32.and $push6=, $0, $pop5 br_if 0, $pop6 # 0: down to label0 @@ -53,5 +53,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr52286.c.s b/test/torture-s/pr52286.c.s index 5a59fc046..80ad54eea 100644 --- a/test/torture-s/pr52286.c.s +++ b/test/torture-s/pr52286.c.s @@ -11,7 +11,7 @@ main: # @main i32.const $0=, 0 #APP #NO_APP - block + block i32.const $push0=, -1 i32.le_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -27,5 +27,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr52760.c.s b/test/torture-s/pr52760.c.s index 15d94079e..6ebcd8b27 100644 --- a/test/torture-s/pr52760.c.s +++ b/test/torture-s/pr52760.c.s @@ -8,14 +8,14 @@ foo: # @foo .param i32, i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 # BB#1: # %for.body.preheader .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.load16_u $push58=, 0($1) tee_local $push57=, $2=, $pop58 i32.const $push56=, 24 @@ -108,7 +108,7 @@ main: # @main i32.const $push22=, 8 i32.add $push23=, $0, $pop22 call foo@FUNCTION, $pop1, $pop23 - block + block i32.load16_u $push3=, 8($0) i32.const $push2=, 256 i32.ne $push4=, $pop3, $pop2 @@ -144,5 +144,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr52979-1.c.s b/test/torture-s/pr52979-1.c.s index 5e94a074e..56fab2040 100644 --- a/test/torture-s/pr52979-1.c.s +++ b/test/torture-s/pr52979-1.c.s @@ -46,7 +46,7 @@ bar: # @bar i32.const $push14=, 0 i32.const $push13=, 0 i32.store e($pop14), $pop13 - block + block i32.const $push12=, 0 i32.load $push8=, d($pop12) i32.eqz $push30=, $pop8 @@ -100,7 +100,7 @@ baz: # @baz i32.const $push16=, 0 i32.const $push15=, 0 i32.store e($pop16), $pop15 - block + block i32.const $push14=, 0 i32.load $push8=, d($pop14) i32.eqz $push36=, $pop8 @@ -163,7 +163,7 @@ main: # @main i32.const $push22=, 0 i32.const $push21=, 0 i32.store e($pop22), $pop21 - block + block i32.const $push20=, 0 i32.load $push8=, d($pop20) i32.eqz $push44=, $pop8 @@ -185,7 +185,7 @@ main: # @main i32.const $push40=, 0 i32.load $push13=, b($pop40):p2align=0 i32.store a($pop41), $pop13 - block + block i32.const $push39=, 0 i64.load32_u $push14=, a($pop39) i64.const $push15=, 33 @@ -256,5 +256,5 @@ b: .size b, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr52979-2.c.s b/test/torture-s/pr52979-2.c.s index 2cc165068..f6c24eede 100644 --- a/test/torture-s/pr52979-2.c.s +++ b/test/torture-s/pr52979-2.c.s @@ -46,7 +46,7 @@ bar: # @bar i32.const $push14=, 0 i32.const $push13=, 0 i32.store e($pop14), $pop13 - block + block i32.const $push12=, 0 i32.load $push8=, d($pop12) i32.eqz $push30=, $pop8 @@ -100,7 +100,7 @@ baz: # @baz i32.const $push16=, 0 i32.const $push15=, 0 i32.store e($pop16), $pop15 - block + block i32.const $push14=, 0 i32.load $push8=, d($pop14) i32.eqz $push36=, $pop8 @@ -163,7 +163,7 @@ main: # @main i32.const $push22=, 0 i32.const $push21=, 0 i32.store e($pop22), $pop21 - block + block i32.const $push20=, 0 i32.load $push8=, d($pop20) i32.eqz $push44=, $pop8 @@ -185,7 +185,7 @@ main: # @main i32.const $push40=, 0 i32.load $push13=, b($pop40):p2align=0 i32.store a($pop41), $pop13 - block + block i32.const $push39=, 0 i64.load32_u $push14=, a($pop39) i64.const $push15=, 33 @@ -256,5 +256,5 @@ b: .size b, 5 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr53084.c.s b/test/torture-s/pr53084.c.s index 1a84ef4b6..541b41f8e 100644 --- a/test/torture-s/pr53084.c.s +++ b/test/torture-s/pr53084.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i32 # BB#0: # %entry - block + block i32.load8_u $push0=, 0($0) i32.const $push5=, 111 i32.ne $push1=, $pop0, $pop5 @@ -52,5 +52,5 @@ main: # @main .size .L.str, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr53160.c.s b/test/torture-s/pr53160.c.s index d0aad7717..0c9c54766 100644 --- a/test/torture-s/pr53160.c.s +++ b/test/torture-s/pr53160.c.s @@ -22,7 +22,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push4=, 0 i32.load $push0=, g($pop4) i32.eqz $push19=, $pop0 @@ -52,7 +52,7 @@ main: # @main i32.const $push7=, 0 i32.const $push6=, 0 i32.store e($pop7), $pop6 - block + block br_if 0, $0 # 0: down to label1 # BB#3: # %if.end16 i32.const $push3=, 0 @@ -146,5 +146,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr53465.c.s b/test/torture-s/pr53465.c.s index c4e2e621c..f985e5edf 100644 --- a/test/torture-s/pr53465.c.s +++ b/test/torture-s/pr53465.c.s @@ -8,8 +8,8 @@ foo: # @foo .param i32, i32 .local i32, i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.const $push3=, 1 i32.lt_s $push0=, $1, $pop3 br_if 0, $pop0 # 0: down to label1 @@ -19,7 +19,7 @@ foo: # @foo i32.const $5=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: copy_local $2=, $4 i32.load $push5=, 0($0) tee_local $push4=, $4=, $pop5 @@ -27,7 +27,7 @@ foo: # @foo br_if 1, $pop10 # 1: down to label1 # BB#3: # %if.end # in Loop: Header=BB0_2 Depth=1 - block + block i32.eqz $push11=, $5 br_if 0, $pop11 # 0: down to label3 # BB#4: # %if.end @@ -71,5 +71,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr53645-2.c.s b/test/torture-s/pr53645-2.c.s index 197146d48..0a1060841 100644 --- a/test/torture-s/pr53645-2.c.s +++ b/test/torture-s/pr53645-2.c.s @@ -1763,8 +1763,8 @@ main: # @main i32.const $0=, u .LBB24_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.const $push1071=, 16 i32.add $push1072=, $10, $pop1071 call uq44444444@FUNCTION, $pop1072, $0 @@ -3014,7 +3014,7 @@ main: # @main i32.const $0=, s .LBB24_99: # %for.body919 # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: call sq44444444@FUNCTION, $10, $0 i32.load16_u $push190=, 0($10) i32.load16_s $push192=, 0($0) @@ -4453,5 +4453,5 @@ s: .size s, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr53645.c.s b/test/torture-s/pr53645.c.s index 37ac8c306..87b8a82a1 100644 --- a/test/torture-s/pr53645.c.s +++ b/test/torture-s/pr53645.c.s @@ -973,8 +973,8 @@ main: # @main i32.const $0=, u .LBB24_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.const $push386=, 16 i32.add $push387=, $6, $pop386 call uq4444@FUNCTION, $pop387, $0 @@ -1532,7 +1532,7 @@ main: # @main i32.const $0=, s .LBB24_51: # %for.body319 # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: call sq4444@FUNCTION, $6, $0 i32.load $push94=, 0($6) i32.load $push96=, 0($0) @@ -2061,5 +2061,5 @@ s: .size s, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr53688.c.s b/test/torture-s/pr53688.c.s index f37462fdd..554e9e22c 100644 --- a/test/torture-s/pr53688.c.s +++ b/test/torture-s/pr53688.c.s @@ -51,7 +51,7 @@ main: # @main i32.const $push10=, 32 i32.const $push3=, 238 i32.call $drop=, memset@FUNCTION, $pop4, $pop10, $pop3 - block + block i32.wrap/i64 $push5=, $0 i32.const $push6=, 255 i32.and $push7=, $pop5, $pop6 @@ -93,5 +93,5 @@ headline: .size headline, 256 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr54471.c.s b/test/torture-s/pr54471.c.s index 980cfbc56..f075537a0 100644 --- a/test/torture-s/pr54471.c.s +++ b/test/torture-s/pr54471.c.s @@ -15,7 +15,7 @@ foo: # @foo i32.sub $push20=, $pop9, $pop10 tee_local $push19=, $6=, $pop20 i32.store __stack_pointer($pop11), $pop19 - block + block i32.eqz $push28=, $3 br_if 0, $pop28 # 0: down to label0 # BB#1: # %for.body.preheader @@ -23,7 +23,7 @@ foo: # @foo i64.const $4=, 1 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: call __multi3@FUNCTION, $6, $1, $2, $4, $5 i32.const $push15=, 16 i32.add $push16=, $6, $pop15 @@ -100,5 +100,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr54937.c.s b/test/torture-s/pr54937.c.s index 7497dd9a8..d1e831bb4 100644 --- a/test/torture-s/pr54937.c.s +++ b/test/torture-s/pr54937.c.s @@ -9,7 +9,7 @@ t: # @t .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 1 i32.lt_s $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -17,8 +17,8 @@ t: # @t i32.const $1=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: - block + loop # label1: + block i32.eqz $push12=, $1 br_if 0, $pop12 # 0: down to label2 # BB#3: # %if.then @@ -86,6 +86,6 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/pr54985.c.s b/test/torture-s/pr54985.c.s index e094f21c9..07effb545 100644 --- a/test/torture-s/pr54985.c.s +++ b/test/torture-s/pr54985.c.s @@ -9,8 +9,8 @@ foo: # @foo .result i32 .local i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.eqz $push11=, $1 br_if 0, $pop11 # 0: down to label1 # BB#1: # %while.body.preheader @@ -19,7 +19,7 @@ foo: # @foo i32.load $0=, 0($0) .LBB0_2: # %while.cond # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push6=, -1 i32.add $push5=, $1, $pop6 tee_local $push4=, $1=, $pop5 @@ -68,7 +68,7 @@ main: # @main i32.store __stack_pointer($pop7), $pop13 i64.const $push0=, 4294967298 i64.store 8($0), $pop0 - block + block i32.const $push11=, 8 i32.add $push12=, $0, $pop11 i32.const $push1=, 2 @@ -90,5 +90,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr55137.c.s b/test/torture-s/pr55137.c.s index 8acf393f2..4a5d09a99 100644 --- a/test/torture-s/pr55137.c.s +++ b/test/torture-s/pr55137.c.s @@ -59,4 +59,4 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr55750.c.s b/test/torture-s/pr55750.c.s index d646b288a..f992c9b35 100644 --- a/test/torture-s/pr55750.c.s +++ b/test/torture-s/pr55750.c.s @@ -38,7 +38,7 @@ main: # @main call foo@FUNCTION, $pop11 i32.const $push3=, 1 call foo@FUNCTION, $pop3 - block + block i32.const $push10=, 0 i32.load8_u $push4=, arr($pop10) i32.const $push5=, 129 @@ -71,5 +71,5 @@ arr: .size arr, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr55875.c.s b/test/torture-s/pr55875.c.s index d90cf29d8..f69ce235f 100644 --- a/test/torture-s/pr55875.c.s +++ b/test/torture-s/pr55875.c.s @@ -8,8 +8,8 @@ t: # @t .param i32 .result i32 # BB#0: # %entry - block - block + block + block i32.eqz $push3=, $0 br_if 0, $pop3 # 0: down to label1 # BB#1: # %if.end @@ -42,7 +42,7 @@ main: # @main i32.const $0=, 5 .LBB1_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label2: + loop i32 # label2: i32.const $push2=, 255 i32.and $push0=, $0, $pop2 i32.call $drop=, t@FUNCTION, $pop0 @@ -65,6 +65,6 @@ a: .size a, 1004 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/pr56051.c.s b/test/torture-s/pr56051.c.s index f50495451..8fa534047 100644 --- a/test/torture-s/pr56051.c.s +++ b/test/torture-s/pr56051.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr56205.c.s b/test/torture-s/pr56205.c.s index 88376b9d7..b2943ca31 100644 --- a/test/torture-s/pr56205.c.s +++ b/test/torture-s/pr56205.c.s @@ -16,7 +16,7 @@ f4: # @f4 tee_local $push22=, $5=, $pop23 i32.store __stack_pointer($pop16), $pop22 i32.store 28($5), $2 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %entry i32.const $push24=, 0 @@ -43,8 +43,8 @@ f4: # @f4 i32.const $push26=, .L.str.3 i32.const $push9=, .L.str.1 i32.select $0=, $pop26, $pop9, $0 - block - block + block + block i32.eqz $push33=, $1 br_if 0, $pop33 # 0: down to label2 # BB#4: # %land.rhs.i @@ -111,7 +111,7 @@ main: # @main i32.const $push20=, 0 i32.const $push6=, .L.str call f4@FUNCTION, $pop20, $pop6, $0 - block + block i32.const $push19=, 0 i32.load $push7=, a($pop19) i32.const $push18=, 1 @@ -158,7 +158,7 @@ f1: # @f1 i32.add $push21=, $1, $pop0 tee_local $push20=, $2=, $pop21 i32.store 12($4), $pop20 - block + block i32.load $push1=, 0($1) i32.const $push2=, .L.str.1 i32.call $push3=, strcmp@FUNCTION, $pop1, $pop2 @@ -201,7 +201,7 @@ f2: # @f2 # BB#0: # %entry #APP #NO_APP - block + block i32.const $push0=, .L.str i32.call $push1=, strcmp@FUNCTION, $0, $pop0 br_if 0, $pop1 # 0: down to label5 @@ -285,6 +285,6 @@ a: .size .L.str.4, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/pr56250.c.s b/test/torture-s/pr56250.c.s index bb1631347..35e2e7836 100644 --- a/test/torture-s/pr56250.c.s +++ b/test/torture-s/pr56250.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr56799.c.s b/test/torture-s/pr56799.c.s index d2114f30e..52f871153 100644 --- a/test/torture-s/pr56799.c.s +++ b/test/torture-s/pr56799.c.s @@ -17,7 +17,7 @@ main: # @main i32.store __stack_pointer($pop12), $pop15 i64.const $push2=, 4295032832 i64.store 8($0), $pop2 - block + block i32.const $push13=, 8 i32.add $push14=, $0, $pop13 i32.call $push4=, foo@FUNCTION, $pop14 @@ -57,7 +57,7 @@ foo: # @foo # BB#0: # %entry i32.load $1=, 4($0) i32.const $2=, 0 - block + block i32.load $push10=, 0($0) tee_local $push9=, $0=, $pop10 i32.const $push0=, 65535 @@ -71,7 +71,7 @@ foo: # @foo copy_local $2=, $1 .LBB1_2: # %if.end end_block # label1: - block + block i32.const $push4=, 65536 i32.lt_u $push5=, $0, $pop4 br_if 0, $pop5 # 0: down to label2 @@ -107,6 +107,6 @@ lo: .size lo, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype abort, void diff --git a/test/torture-s/pr56837.c.s b/test/torture-s/pr56837.c.s index fdcf13687..3eccb00e8 100644 --- a/test/torture-s/pr56837.c.s +++ b/test/torture-s/pr56837.c.s @@ -10,7 +10,7 @@ foo: # @foo i32.const $0=, -8192 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push5=, a+8192 i32.add $push0=, $0, $pop5 i64.const $push4=, 4294967295 @@ -39,8 +39,8 @@ main: # @main i32.const $0=, a .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label2: + block + loop # label2: i32.load $push1=, 0($0) i32.const $push6=, -1 i32.ne $push2=, $pop1, $pop6 @@ -83,5 +83,5 @@ a: .size a, 8192 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr56866.c.s b/test/torture-s/pr56866.c.s index e1ce88428..ad06e92d4 100644 --- a/test/torture-s/pr56866.c.s +++ b/test/torture-s/pr56866.c.s @@ -68,7 +68,7 @@ main: # @main #NO_APP .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push76=, 3616 i32.add $push77=, $5, $pop76 i32.add $push10=, $pop77, $1 @@ -90,7 +90,7 @@ main: # @main i32.const $1=, 0 .LBB0_3: # %for.body16 # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push80=, 1568 i32.add $push81=, $5, $pop80 i32.add $push15=, $pop81, $1 @@ -112,7 +112,7 @@ main: # @main i32.const $1=, 0 .LBB0_5: # %for.body28 # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push84=, 544 i32.add $push85=, $5, $pop84 i32.add $push21=, $pop85, $1 @@ -138,7 +138,7 @@ main: # @main i32.const $1=, 0 .LBB0_7: # %for.body43 # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push88=, 32 i32.add $push89=, $5, $pop88 i32.add $push27=, $pop89, $1 @@ -181,7 +181,7 @@ main: # @main i32.add $2=, $5, $pop100 #APP #NO_APP - block + block i64.load $push30=, 3616($5) i64.const $push29=, -1224658842671273011 i64.ne $push31=, $pop30, $pop29 @@ -231,5 +231,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr56899.c.s b/test/torture-s/pr56899.c.s index 46c2c9910..e3b0d2047 100644 --- a/test/torture-s/pr56899.c.s +++ b/test/torture-s/pr56899.c.s @@ -7,7 +7,7 @@ f1: # @f1 .param i32 # BB#0: # %entry - block + block i32.const $push0=, -214748365 i32.mul $push1=, $0, $pop0 i32.const $push2=, 2147483646 @@ -30,7 +30,7 @@ f1: # @f1 f2: # @f2 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 214748365 i32.mul $push1=, $0, $pop0 i32.const $push2=, 2147483646 @@ -53,7 +53,7 @@ f2: # @f2 f3: # @f3 .param i32 # BB#0: # %entry - block + block i32.const $push0=, -214748365 i32.mul $push1=, $0, $pop0 i32.const $push2=, 2147483646 @@ -76,7 +76,7 @@ f3: # @f3 f4: # @f4 .param i32 # BB#0: # %entry - block + block i32.const $push0=, 214748365 i32.mul $push1=, $0, $pop0 i32.const $push2=, 2147483646 @@ -114,5 +114,5 @@ main: # @main .size main, .Lfunc_end4-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr56962.c.s b/test/torture-s/pr56962.c.s index 7f74590b3..d727b7485 100644 --- a/test/torture-s/pr56962.c.s +++ b/test/torture-s/pr56962.c.s @@ -7,7 +7,7 @@ bar: # @bar .param i32 # BB#0: # %entry - block + block i32.const $push0=, v+232 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -103,5 +103,5 @@ v: .size v, 1152 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr56982.c.s b/test/torture-s/pr56982.c.s index 9edb6528c..3982b8045 100644 --- a/test/torture-s/pr56982.c.s +++ b/test/torture-s/pr56982.c.s @@ -22,7 +22,7 @@ f: # @f .result i32 .local i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.eqz $push6=, $pop0 br_if 0, $pop6 # 0: down to label0 @@ -35,7 +35,7 @@ f: # @f i32.call $1=, setjmp@FUNCTION, $pop4 #APP #NO_APP - block + block br_if 0, $1 # 0: down to label1 # BB#3: # %if.end6 i32.const $push5=, env @@ -90,7 +90,7 @@ env: .size env, 156 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype setjmp, i32, i32 .functype exit, void, i32 .functype longjmp, void, i32, i32 diff --git a/test/torture-s/pr57124.c.s b/test/torture-s/pr57124.c.s index 0900d7db9..02b60c613 100644 --- a/test/torture-s/pr57124.c.s +++ b/test/torture-s/pr57124.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32 .result i32 # BB#0: # %entry - block + block i32.load16_u $push0=, 0($0) i32.const $push1=, 4095 i32.gt_u $push2=, $pop0, $pop1 @@ -55,6 +55,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr57130.c.s b/test/torture-s/pr57130.c.s index 75fcf9045..3884f5b02 100644 --- a/test/torture-s/pr57130.c.s +++ b/test/torture-s/pr57130.c.s @@ -15,7 +15,7 @@ foo: # @foo i32.const $push1=, 1 i32.add $push2=, $pop9, $pop1 i32.store foo.cnt($pop0), $pop2 - block + block i32.const $push3=, 4 i32.shl $push4=, $1, $pop3 i32.const $push5=, s @@ -116,6 +116,6 @@ foo.cnt: .size .Lmain.r, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype memcmp, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/pr57131.c.s b/test/torture-s/pr57131.c.s index c0ef91b83..91883538b 100644 --- a/test/torture-s/pr57131.c.s +++ b/test/torture-s/pr57131.c.s @@ -32,7 +32,7 @@ main: # @main i64.load32_u $2=, 28($5) i32.load $3=, 24($5) i32.load $4=, 20($5) - block + block i64.load $push8=, 8($5) i64.shl $push3=, $1, $2 i64.mul $push4=, $0, $pop3 @@ -59,5 +59,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57144.c.s b/test/torture-s/pr57144.c.s index 94d2b9889..826cfa6e8 100644 --- a/test/torture-s/pr57144.c.s +++ b/test/torture-s/pr57144.c.s @@ -29,5 +29,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr57281.c.s b/test/torture-s/pr57281.c.s index 6a3bb517b..65292476d 100644 --- a/test/torture-s/pr57281.c.s +++ b/test/torture-s/pr57281.c.s @@ -31,7 +31,7 @@ main: # @main .result i32 .local i32, i32, i32, i32 # BB#0: # %entry - block + block i32.const $push7=, 0 i32.load $push0=, b($pop7) i32.const $push6=, -20 @@ -46,7 +46,7 @@ main: # @main i32.load $0=, a($pop8) .LBB1_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push22=, 0 i32.store 0($1), $pop22 i32.const $push21=, 0 @@ -142,4 +142,4 @@ f: .size f, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr57321.c.s b/test/torture-s/pr57321.c.s index a6150dd85..5812ea70f 100644 --- a/test/torture-s/pr57321.c.s +++ b/test/torture-s/pr57321.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, a($pop3) br_if 0, $pop0 # 0: down to label0 @@ -52,4 +52,4 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr57344-1.c.s b/test/torture-s/pr57344-1.c.s index bcd52487c..d700ef0a3 100644 --- a/test/torture-s/pr57344-1.c.s +++ b/test/torture-s/pr57344-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, -3161 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -34,7 +34,7 @@ main: # @main i32.const $push19=, 0 i64.const $push0=, 8583460864 i64.store s+8($pop19), $pop0 - block + block i32.const $push18=, 0 i32.load $push1=, i($pop18) i32.const $push17=, 0 @@ -56,7 +56,7 @@ main: # @main # BB#2: # %for.body.for.body_crit_edge.preheader .LBB1_3: # %for.body.for.body_crit_edge # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push36=, 0 i64.load32_u $push9=, s+8($pop36) i32.const $push35=, 0 @@ -110,5 +110,5 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57344-2.c.s b/test/torture-s/pr57344-2.c.s index eae1ba962..194e41448 100644 --- a/test/torture-s/pr57344-2.c.s +++ b/test/torture-s/pr57344-2.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, -3161 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -34,7 +34,7 @@ main: # @main i32.const $push21=, 0 i64.const $push0=, 562525691183104 i64.store s+8($pop21), $pop0 - block + block i32.const $push20=, 0 i32.load $push1=, i($pop20) i32.const $push19=, 0 @@ -56,7 +56,7 @@ main: # @main # BB#2: # %for.body.for.body_crit_edge.preheader .LBB1_3: # %for.body.for.body_crit_edge # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push39=, 0 i64.load32_u $push12=, s+8($pop39) i32.const $push38=, 0 @@ -113,5 +113,5 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57344-3.c.s b/test/torture-s/pr57344-3.c.s index dcc793a9b..49b73a009 100644 --- a/test/torture-s/pr57344-3.c.s +++ b/test/torture-s/pr57344-3.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i64 # BB#0: # %entry - block + block i64.const $push0=, -3161 i64.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -39,7 +39,7 @@ main: # @main i32.const $push22=, 0 i64.load $push1=, .Lmain.t($pop22):p2align=0 i64.store s+16($pop23), $pop1 - block + block i32.const $push21=, 0 i32.load $push2=, i($pop21) i32.const $push20=, 0 @@ -61,7 +61,7 @@ main: # @main # BB#2: # %for.body.for.body_crit_edge.preheader .LBB1_3: # %for.body.for.body_crit_edge # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push47=, 0 i64.load $push46=, s+16($pop47) tee_local $push45=, $0=, $pop46 @@ -138,5 +138,5 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57344-4.c.s b/test/torture-s/pr57344-4.c.s index fd7d2e634..0e01023b1 100644 --- a/test/torture-s/pr57344-4.c.s +++ b/test/torture-s/pr57344-4.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i64 # BB#0: # %entry - block + block i64.const $push0=, -1220975898975746 i64.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -39,7 +39,7 @@ main: # @main i32.const $push25=, 0 i64.load $push1=, .Lmain.t($pop25):p2align=0 i64.store s+16($pop26), $pop1 - block + block i32.const $push24=, 0 i32.load $push2=, i($pop24) i32.const $push23=, 0 @@ -61,7 +61,7 @@ main: # @main # BB#2: # %for.body.for.body_crit_edge.preheader .LBB1_3: # %for.body.for.body_crit_edge # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push49=, 0 i64.load32_u $push15=, s+24($pop49) i32.const $push48=, 0 @@ -145,5 +145,5 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57568.c.s b/test/torture-s/pr57568.c.s index 158129d8c..67c5c5c9c 100644 --- a/test/torture-s/pr57568.c.s +++ b/test/torture-s/pr57568.c.s @@ -8,8 +8,8 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block - block + block + block i32.const $push3=, 0 i32.load $push0=, b($pop3) i32.eqz $push10=, $pop0 @@ -64,5 +64,5 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57829.c.s b/test/torture-s/pr57829.c.s index df2214ecf..5ed503275 100644 --- a/test/torture-s/pr57829.c.s +++ b/test/torture-s/pr57829.c.s @@ -66,7 +66,7 @@ f3: # @f3 main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push14=, 1 i32.call $push0=, f1@FUNCTION, $pop14 i32.const $push13=, 2 @@ -102,5 +102,5 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57860.c.s b/test/torture-s/pr57860.c.s index 855b9b2bf..8ece56230 100644 --- a/test/torture-s/pr57860.c.s +++ b/test/torture-s/pr57860.c.s @@ -18,8 +18,8 @@ foo: # @foo i64.extend_s/i32 $1=, $0 .LBB0_1: # %for.cond # =>This Inner Loop Header: Depth=1 - loop # label0: - block + loop # label0: + block i32.const $push15=, 0 i32.load $push0=, c($pop15) i32.eqz $push27=, $pop0 @@ -32,7 +32,7 @@ foo: # @foo .LBB0_3: # %for.end # in Loop: Header=BB0_1 Depth=1 end_block # label1: - block + block i64.load32_s $push3=, 0($2) i32.const $push26=, 0 i64.load32_s $push1=, a($pop26) @@ -84,8 +84,8 @@ main: # @main i32.load $0=, b($pop12) .LBB1_1: # %for.cond.i # =>This Inner Loop Header: Depth=1 - loop # label3: - block + loop # label3: + block i32.const $push17=, 0 i32.load $push0=, c($pop17) i32.eqz $push32=, $pop0 @@ -98,7 +98,7 @@ main: # @main .LBB1_3: # %for.end.i # in Loop: Header=BB1_1 Depth=1 end_block # label4: - block + block i64.load32_s $push3=, 0($0) i32.const $push29=, 0 i64.load32_s $push1=, a($pop29) @@ -129,7 +129,7 @@ main: # @main .LBB1_5: # %foo.exit end_block # label5: end_loop - block + block i32.const $push30=, 0 i32.load $push8=, d($pop30) i32.const $push9=, 1 @@ -228,5 +228,5 @@ g: .size g, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57861.c.s b/test/torture-s/pr57861.c.s index cbed4cb8f..efe06557d 100644 --- a/test/torture-s/pr57861.c.s +++ b/test/torture-s/pr57861.c.s @@ -15,7 +15,7 @@ main: # @main i32.load16_u $push20=, a($pop21) tee_local $push19=, $0=, $pop20 copy_local $1=, $pop19 - block + block i32.const $push18=, 0 i32.load $push7=, e($pop18) i32.const $push4=, 24 @@ -58,7 +58,7 @@ main: # @main i32.load $push13=, g($pop34) i32.const $push33=, 0 i32.store 0($pop13), $pop33 - block + block i32.const $push14=, 65535 i32.and $push15=, $1, $pop14 br_if 0, $pop15 # 0: down to label1 @@ -164,5 +164,5 @@ e: .size e, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57875.c.s b/test/torture-s/pr57875.c.s index fed0512d3..bfbe0d889 100644 --- a/test/torture-s/pr57875.c.s +++ b/test/torture-s/pr57875.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.const $push15=, 0 i32.load $push14=, i($pop15) tee_local $push13=, $4=, $pop14 @@ -22,13 +22,13 @@ main: # @main i32.load $0=, d($pop16) .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: - block + loop # label1: + block br_if 0, $0 # 0: down to label2 # BB#3: # %if.then # in Loop: Header=BB0_2 Depth=1 - block - block + block + block i32.eqz $push31=, $1 br_if 0, $pop31 # 0: down to label4 # BB#4: # %if.then.if.end_crit_edge @@ -79,7 +79,7 @@ main: # @main i32.load $push28=, 0($pop10) tee_local $push27=, $4=, $pop28 i32.store b($pop30), $pop27 - block + block br_if 0, $4 # 0: down to label5 # BB#10: # %if.end10 i32.const $push11=, 0 @@ -155,5 +155,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57876.c.s b/test/torture-s/pr57876.c.s index 24639dcc8..1417661e4 100644 --- a/test/torture-s/pr57876.c.s +++ b/test/torture-s/pr57876.c.s @@ -231,7 +231,7 @@ main: # @main i32.const $push49=, 12 i32.add $push50=, $4, $pop49 i32.store g($pop51), $pop50 - block + block i32.eqz $push172=, $0 br_if 0, $pop172 # 0: down to label0 # BB#1: # %if.end @@ -329,5 +329,5 @@ g: .size g, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr57877.c.s b/test/torture-s/pr57877.c.s index 563086060..9f8fcbcd5 100644 --- a/test/torture-s/pr57877.c.s +++ b/test/torture-s/pr57877.c.s @@ -8,8 +8,8 @@ main: # @main .result i32 .local i64, i32, i32, i32, i32, i32 # BB#0: # %entry - block - block + block + block i32.const $push15=, 0 i32.load $push14=, g($pop15) tee_local $push13=, $4=, $pop14 @@ -32,7 +32,7 @@ main: # @main i32.load $1=, c($pop17) .LBB0_3: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push33=, 0 i32.load $push32=, 0($1) tee_local $push31=, $3=, $pop32 @@ -63,7 +63,7 @@ main: # @main i32.store16 d($pop8), $3 .LBB0_5: # %foo.exit end_block # label0: - block + block i32.const $push9=, 1 i32.ne $push10=, $5, $pop9 br_if 0, $pop10 # 0: down to label3 @@ -151,5 +151,5 @@ d: .size d, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58209.c.s b/test/torture-s/pr58209.c.s index 99b96d5ea..cdb59d001 100644 --- a/test/torture-s/pr58209.c.s +++ b/test/torture-s/pr58209.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32 .result i32 # BB#0: # %entry - block + block i32.eqz $push6=, $0 br_if 0, $pop6 # 0: down to label0 # BB#1: # %if.end @@ -36,7 +36,7 @@ bar: # @bar .local i32 # BB#0: # %entry i32.const $1=, buf - block + block i32.eqz $push4=, $0 br_if 0, $pop4 # 0: down to label1 # BB#1: # %if.end @@ -65,8 +65,8 @@ main: # @main i32.const $1=, buf-4 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.const $push10=, 4 i32.add $push9=, $1, $pop10 tee_local $push8=, $1=, $pop9 @@ -77,7 +77,7 @@ main: # @main # BB#2: # %lor.lhs.false # in Loop: Header=BB2_1 Depth=1 i32.const $3=, buf - block + block i32.eqz $push17=, $2 br_if 0, $pop17 # 0: down to label4 # BB#3: # %if.end.i @@ -122,5 +122,5 @@ buf: .size buf, 4096 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58277-1.c.s b/test/torture-s/pr58277-1.c.s index bc0add3a4..fbf6b545a 100644 --- a/test/torture-s/pr58277-1.c.s +++ b/test/torture-s/pr58277-1.c.s @@ -58,12 +58,12 @@ main: # @main # =>This Loop Header: Depth=1 # Child Loop BB2_4 Depth 2 # Child Loop BB2_6 Depth 3 - loop # label0: + loop # label0: i32.const $push131=, 0 i32.const $push130=, 0 i32.store g($pop131), $pop130 - block - block + block + block i32.const $push129=, 0 i32.load $push0=, l($pop129) i32.eqz $push254=, $pop0 @@ -112,7 +112,7 @@ main: # @main i32.const $push147=, 0 i32.const $push146=, 0 i32.store o($pop147), $pop146 - block + block i32.const $push145=, 0 i32.load $push10=, p($pop145) br_if 0, $pop10 # 0: down to label3 @@ -120,14 +120,14 @@ main: # @main # Parent Loop BB2_1 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB2_6 Depth 3 - loop # label4: + loop # label4: i32.const $push156=, 0 i32.load $push155=, i($pop156) tee_local $push154=, $2=, $pop155 i32.load $push11=, 0($pop154) i32.const $push153=, 0 i32.store 0($pop11), $pop153 - block + block i32.const $push152=, 0 i32.load $push12=, j($pop152) i32.load $push13=, 0($pop12) @@ -143,7 +143,7 @@ main: # @main # Parent Loop BB2_1 Depth=1 # Parent Loop BB2_4 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label6: + loop # label6: i32.const $push166=, 0 i32.const $push165=, 0 i32.load $push15=, k($pop165) @@ -243,7 +243,7 @@ main: # @main br_if 0, $0 # 0: up to label0 # BB#10: # %for.end8 end_loop - block + block i32.const $push199=, 0 i32.load $push198=, b($pop199) tee_local $push197=, $1=, $pop198 @@ -255,12 +255,12 @@ main: # @main .LBB2_12: # %for.cond12.preheader # =>This Loop Header: Depth=1 # Child Loop BB2_13 Depth 2 - loop # label8: + loop # label8: i32.const $0=, 10 .LBB2_13: # %for.body15 # Parent Loop BB2_12 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label9: + loop # label9: i32.const $push219=, 2 i32.shl $push41=, $2, $pop219 i32.const $push218=, a @@ -322,7 +322,7 @@ main: # @main .LBB2_16: # %for.end29 end_block # label7: call baz@FUNCTION - block + block i32.const $push253=, 0 i32.load8_s $push65=, u($pop253) i32.const $push66=, 2 @@ -566,5 +566,5 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58277-2.c.s b/test/torture-s/pr58277-2.c.s index ccdd22fa3..ad2a0177a 100644 --- a/test/torture-s/pr58277-2.c.s +++ b/test/torture-s/pr58277-2.c.s @@ -10,8 +10,8 @@ main: # @main i32.const $push7=, 0 i32.const $push6=, 0 i32.store8 n($pop7), $pop6 - block - block + block + block i32.const $push5=, 0 i32.load $push0=, g($pop5) i32.eqz $push16=, $pop0 @@ -121,4 +121,4 @@ s: .size s, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr58364.c.s b/test/torture-s/pr58364.c.s index 139247a2c..34fa5ac9d 100644 --- a/test/torture-s/pr58364.c.s +++ b/test/torture-s/pr58364.c.s @@ -27,7 +27,7 @@ main: # @main i32.const $push6=, 0 i32.const $push5=, 0 i32.store b($pop6), $pop5 - block + block i32.const $push4=, 0 i32.load $push1=, a($pop4) i32.const $push3=, 0 @@ -73,5 +73,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58365.c.s b/test/torture-s/pr58365.c.s index 6bd155061..73d743bac 100644 --- a/test/torture-s/pr58365.c.s +++ b/test/torture-s/pr58365.c.s @@ -29,8 +29,8 @@ main: # @main i32.sub $push35=, $pop27, $pop28 tee_local $push34=, $0=, $pop35 i32.store __stack_pointer($pop29), $pop34 - block - block + block + block i32.const $push33=, 0 i32.load8_u $push0=, i($pop33) i32.eqz $push49=, $pop0 @@ -88,7 +88,7 @@ main: # @main i32.const $push42=, 0 i32.const $push24=, 1 i32.store f+4($pop42), $pop24 - block + block i32.const $push41=, 0 i32.load $push25=, h+4($pop41) br_if 0, $pop25 # 0: down to label2 @@ -133,5 +133,5 @@ f: .size f, 20 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58385.c.s b/test/torture-s/pr58385.c.s index cecccc972..0819188e1 100644 --- a/test/torture-s/pr58385.c.s +++ b/test/torture-s/pr58385.c.s @@ -51,4 +51,4 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr58387.c.s b/test/torture-s/pr58387.c.s index da56f6ef3..fcb5f058e 100644 --- a/test/torture-s/pr58387.c.s +++ b/test/torture-s/pr58387.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, a($pop3) i32.const $push2=, 0 @@ -34,5 +34,5 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58419.c.s b/test/torture-s/pr58419.c.s index 061c39474..f7eb11c58 100644 --- a/test/torture-s/pr58419.c.s +++ b/test/torture-s/pr58419.c.s @@ -53,7 +53,7 @@ main: # @main i32.const $push55=, 0 i32.load $0=, p($pop55) i32.const $1=, 1 - block + block i32.const $push54=, 0 i32.load $push53=, k($pop54) tee_local $push52=, $4=, $pop53 @@ -88,7 +88,7 @@ main: # @main end_block # label0: i32.const $push65=, 0 i32.store g($pop65), $1 - block + block i32.const $push64=, 0 i32.ne $push7=, $4, $pop64 i32.const $push63=, 0 @@ -116,7 +116,7 @@ main: # @main i32.store g($pop74), $5 i32.const $5=, 1 i32.const $1=, 1 - block + block i32.const $push73=, 0 i32.ne $push12=, $4, $pop73 i32.const $push72=, 0 @@ -142,7 +142,7 @@ main: # @main end_block # label2: i32.const $push83=, 0 i32.store g($pop83), $1 - block + block i32.const $push82=, 0 i32.ne $push17=, $4, $pop82 i32.const $push81=, 0 @@ -170,7 +170,7 @@ main: # @main i32.store g($pop92), $5 i32.const $5=, 1 i32.const $1=, 1 - block + block i32.const $push91=, 0 i32.ne $push22=, $4, $pop91 i32.const $push90=, 0 @@ -196,7 +196,7 @@ main: # @main end_block # label4: i32.const $push101=, 0 i32.store g($pop101), $1 - block + block i32.const $push100=, 0 i32.ne $push27=, $4, $pop100 i32.const $push99=, 0 @@ -224,7 +224,7 @@ main: # @main i32.store g($pop110), $5 i32.const $5=, 1 i32.const $1=, 1 - block + block i32.const $push109=, 0 i32.ne $push32=, $4, $pop109 i32.const $push108=, 0 @@ -252,7 +252,7 @@ main: # @main i32.store g($pop122), $1 i32.const $push121=, 0 i32.load $1=, a($pop121) - block + block i32.const $push120=, 0 i32.ne $push37=, $4, $pop120 i32.const $push119=, 0 @@ -368,5 +368,5 @@ g: .size g, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype getpid, i32 diff --git a/test/torture-s/pr58431.c.s b/test/torture-s/pr58431.c.s index 5b3f9bd1b..76706c683 100644 --- a/test/torture-s/pr58431.c.s +++ b/test/torture-s/pr58431.c.s @@ -31,7 +31,7 @@ main: # @main i32.shl $push3=, $1, $pop2 i32.const $push12=, 24 i32.shr_s $1=, $pop3, $pop12 - block + block br_if 0, $2 # 0: down to label0 # BB#1: # %lor.rhs i32.const $push25=, 0 @@ -42,9 +42,9 @@ main: # @main end_block # label0: i32.const $push26=, 0 i32.store j($pop26), $3 - block - block - block + block + block + block i32.ne $push5=, $0, $1 br_if 0, $pop5 # 0: down to label3 # BB#3: # %if.else @@ -76,7 +76,7 @@ main: # @main i32.const $push36=, 0 i32.const $push10=, 1 i32.store b($pop36), $pop10 - block + block i32.const $push35=, 0 i32.load8_u $push11=, h($pop35) br_if 0, $pop11 # 0: down to label4 @@ -187,5 +187,5 @@ e: .size e, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58564.c.s b/test/torture-s/pr58564.c.s index 4c0506211..32bd5502d 100644 --- a/test/torture-s/pr58564.c.s +++ b/test/torture-s/pr58564.c.s @@ -53,4 +53,4 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr58570.c.s b/test/torture-s/pr58570.c.s index 1cc5bce37..f66ab1733 100644 --- a/test/torture-s/pr58570.c.s +++ b/test/torture-s/pr58570.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push25=, 0 i32.load $push0=, e($pop25) i32.eqz $push33=, $pop0 @@ -32,7 +32,7 @@ main: # @main i64.store16 0($pop26), $pop9 .LBB0_2: # %if.end end_block # label0: - block + block i32.const $push32=, 0 i64.load32_u $push13=, d($pop32) i32.const $push31=, 0 @@ -87,5 +87,5 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58574.c.s b/test/torture-s/pr58574.c.s index 5896e7258..3f633882c 100644 --- a/test/torture-s/pr58574.c.s +++ b/test/torture-s/pr58574.c.s @@ -10,77 +10,77 @@ foo: # @foo .local i32, f64 # BB#0: # %entry f64.const $2=, 0x1p0 - block + block i32.trunc_s/f64 $push1346=, $0 tee_local $push1345=, $1=, $pop1346 i32.const $push0=, 93 i32.gt_u $push1=, $pop1345, $pop0 br_if 0, $pop1 # 0: down to label0 # BB#1: # %entry - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block + block br_table $1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 64, 64, 64, 27, 64, 64, 64, 64, 64, 64, 64, 64, 64, 28, 64, 64, 64, 64, 64, 64, 64, 64, 64, 29, 64, 64, 64, 64, 64, 64, 64, 64, 64, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 0 # 0: down to label64 # 1: down to label63 # 2: down to label62 @@ -1825,7 +1825,7 @@ main: # @main .result i32 .local f64 # BB#0: # %entry - block + block f64.const $push0=, 0x1.399999999999ap6 f64.call $push9=, foo@FUNCTION, $pop0 tee_local $push8=, $0=, $pop9 @@ -1851,5 +1851,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58640-2.c.s b/test/torture-s/pr58640-2.c.s index 8e2626419..eb1637f09 100644 --- a/test/torture-s/pr58640-2.c.s +++ b/test/torture-s/pr58640-2.c.s @@ -73,7 +73,7 @@ main: # @main i32.store a($pop5), $pop2 i32.const $push1=, 0 i32.store a+4($pop1), $0 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end i32.const $push9=, 0 @@ -114,5 +114,5 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58640.c.s b/test/torture-s/pr58640.c.s index 2b053870a..a1436317b 100644 --- a/test/torture-s/pr58640.c.s +++ b/test/torture-s/pr58640.c.s @@ -7,14 +7,14 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push9=, 0 i32.load $push0=, b($pop9) i32.const $push8=, 0 i32.gt_s $push1=, $pop0, $pop8 br_if 0, $pop1 # 0: down to label0 # BB#1: # %for.body3.lr.ph.i - block + block i32.const $push10=, 0 i32.load $push2=, d($pop10) br_if 0, $pop2 # 0: down to label1 @@ -88,5 +88,5 @@ e: .size e, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pr58662.c.s b/test/torture-s/pr58662.c.s index 2a98c1c91..682acc0a7 100644 --- a/test/torture-s/pr58662.c.s +++ b/test/torture-s/pr58662.c.s @@ -27,7 +27,7 @@ main: # @main i32.store b($pop18), $pop8 i32.const $push11=, 0 i32.store d($pop11), $0 - block + block i32.const $push10=, 0 i32.load $push9=, b($pop10) br_if 0, $pop9 # 0: down to label0 @@ -79,5 +79,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58726.c.s b/test/torture-s/pr58726.c.s index ddd68f97b..b092b7591 100644 --- a/test/torture-s/pr58726.c.s +++ b/test/torture-s/pr58726.c.s @@ -69,4 +69,4 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr58831.c.s b/test/torture-s/pr58831.c.s index 0f9fe0339..2764e5ffd 100644 --- a/test/torture-s/pr58831.c.s +++ b/test/torture-s/pr58831.c.s @@ -41,7 +41,7 @@ fn1: # @fn1 .param i32 .local i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, p($pop3) i32.eqz $push13=, $pop0 @@ -49,7 +49,7 @@ fn1: # @fn1 # BB#1: # %for.body.preheader .LBB2_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push9=, 1 i32.store 0($0), $pop9 i32.const $push8=, 0 @@ -174,4 +174,4 @@ j: .size j, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr58943.c.s b/test/torture-s/pr58943.c.s index fc8e1b73e..91f667724 100644 --- a/test/torture-s/pr58943.c.s +++ b/test/torture-s/pr58943.c.s @@ -34,7 +34,7 @@ main: # @main i32.or $push5=, $pop0, $pop1 tee_local $push4=, $0=, $pop5 i32.store x($pop7), $pop4 - block + block i32.const $push2=, 131 i32.ne $push3=, $0, $pop2 br_if 0, $pop3 # 0: down to label0 @@ -59,5 +59,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr58984.c.s b/test/torture-s/pr58984.c.s index 7d90d765d..d910c4b71 100644 --- a/test/torture-s/pr58984.c.s +++ b/test/torture-s/pr58984.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push13=, 0 i32.load $push0=, e($pop13) i32.const $push12=, 1 @@ -27,7 +27,7 @@ main: # @main i32.const $push21=, 0 i32.const $push20=, 1 i32.store m($pop21), $pop20 - block + block i32.const $push19=, 0 i32.load $push4=, a($pop19) i32.const $push18=, 1 @@ -119,5 +119,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr59014-2.c.s b/test/torture-s/pr59014-2.c.s index 19a073b9f..20a390d89 100644 --- a/test/torture-s/pr59014-2.c.s +++ b/test/torture-s/pr59014-2.c.s @@ -25,7 +25,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i64.const $push1=, 12884901888 i64.const $push0=, 21474836480 i64.call $push2=, foo@FUNCTION, $pop1, $pop0 @@ -44,5 +44,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr59014.c.s b/test/torture-s/pr59014.c.s index e92f98908..00553a7b4 100644 --- a/test/torture-s/pr59014.c.s +++ b/test/torture-s/pr59014.c.s @@ -8,7 +8,7 @@ foo: # @foo .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push9=, 0 i32.load $push2=, b($pop9) i32.const $push8=, 0 @@ -23,7 +23,7 @@ foo: # @foo br_if 0, $pop12 # 0: down to label0 .LBB0_1: # %for.inc # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: br 0 # 0: up to label1 .LBB0_2: # %if.else end_loop @@ -44,7 +44,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push12=, 0 i32.load $push2=, b($pop12) i32.const $push11=, 0 @@ -59,14 +59,14 @@ main: # @main br_if 0, $pop14 # 0: down to label2 .LBB1_1: # %for.inc.i # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: br 0 # 0: up to label3 .LBB1_2: # %foo.exit end_loop end_block # label2: i32.const $push13=, 0 i32.store d($pop13), $0 - block + block i32.const $push5=, 2 i32.ne $push6=, $0, $pop5 br_if 0, $pop6 # 0: down to label4 @@ -118,5 +118,5 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr59101.c.s b/test/torture-s/pr59101.c.s index f89254fc6..c7dceda9b 100644 --- a/test/torture-s/pr59101.c.s +++ b/test/torture-s/pr59101.c.s @@ -26,7 +26,7 @@ foo: # @foo main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.call $push0=, foo@FUNCTION, $pop3 i32.const $push1=, 7 @@ -44,5 +44,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr59221.c.s b/test/torture-s/pr59221.c.s index c81b90c6c..eb6e33aec 100644 --- a/test/torture-s/pr59221.c.s +++ b/test/torture-s/pr59221.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push10=, 0 i32.load $push0=, b($pop10) i32.eqz $push21=, $pop0 @@ -35,7 +35,7 @@ main: # @main i32.store16 e($pop20), $pop14 i32.const $push13=, 0 i32.store d($pop13), $0 - block + block i32.const $push7=, 1 i32.ne $push8=, $0, $pop7 br_if 0, $pop8 # 0: down to label1 @@ -87,5 +87,5 @@ d: .size d, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr59229.c.s b/test/torture-s/pr59229.c.s index 338141bba..2d58540b0 100644 --- a/test/torture-s/pr59229.c.s +++ b/test/torture-s/pr59229.c.s @@ -8,7 +8,7 @@ bar: # @bar .param i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push17=, i($pop0) tee_local $push16=, $1=, $pop17 @@ -58,7 +58,7 @@ foo: # @foo i32.sub $push18=, $pop7, $pop8 tee_local $push17=, $2=, $pop18 i32.store __stack_pointer($pop9), $pop17 - block + block i32.const $push0=, -1 i32.add $push1=, $1, $pop0 i32.const $push2=, 5 @@ -98,7 +98,7 @@ main: # @main i32.const $0=, 0 .LBB2_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push11=, .L.str.1 call foo@FUNCTION, $pop11, $0 i32.const $push10=, 0 @@ -140,6 +140,6 @@ i: .size .L.str.1, 17 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype memcmp, i32, i32, i32, i32 diff --git a/test/torture-s/pr59358.c.s b/test/torture-s/pr59358.c.s index f6714c580..256c8f4d7 100644 --- a/test/torture-s/pr59358.c.s +++ b/test/torture-s/pr59358.c.s @@ -10,8 +10,8 @@ foo: # @foo .local i32 # BB#0: # %entry i32.load $0=, 0($0) - block - block + block + block i32.const $push0=, 16 i32.gt_s $push1=, $1, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -21,7 +21,7 @@ foo: # @foo # BB#2: # %while.cond.preheader .LBB0_3: # %while.cond # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: copy_local $push8=, $0 tee_local $push7=, $2=, $pop8 i32.const $push6=, 1 @@ -65,14 +65,14 @@ main: # @main i32.const $2=, 1 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: i32.const $push19=, 12 i32.add $push20=, $6, $pop19 i32.const $push31=, 16 i32.call $4=, foo@FUNCTION, $pop20, $pop31 copy_local $5=, $0 - block + block i32.const $push30=, -1 i32.add $push29=, $1, $pop30 tee_local $push28=, $3=, $pop29 @@ -83,7 +83,7 @@ main: # @main br_if 0, $pop2 # 0: down to label5 # BB#2: # %if.else # in Loop: Header=BB1_1 Depth=1 - block + block i32.const $push33=, -4 i32.and $push3=, $3, $pop33 i32.const $push32=, 4 @@ -114,7 +114,7 @@ main: # @main i32.const $push39=, 7 i32.call $4=, foo@FUNCTION, $pop22, $pop39 copy_local $5=, $2 - block + block i32.const $push38=, 6 i32.gt_s $push7=, $3, $pop38 br_if 0, $pop7 # 0: down to label7 @@ -166,5 +166,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr59387.c.s b/test/torture-s/pr59387.c.s index 7c9821617..5dac85529 100644 --- a/test/torture-s/pr59387.c.s +++ b/test/torture-s/pr59387.c.s @@ -16,8 +16,8 @@ main: # @main i32.load8_u $1=, c($pop4) .LBB0_1: # %for.cond1.preheader # =>This Inner Loop Header: Depth=1 - block - loop # label1: + block + loop # label1: i32.const $push10=, 0 i32.load $push0=, e($pop10) i32.const $push9=, f @@ -104,4 +104,4 @@ f: .size f, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr59388.c.s b/test/torture-s/pr59388.c.s index 9177cc5a4..ab2f39316 100644 --- a/test/torture-s/pr59388.c.s +++ b/test/torture-s/pr59388.c.s @@ -40,4 +40,4 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr59413.c.s b/test/torture-s/pr59413.c.s index e417a97e9..40d15d416 100644 --- a/test/torture-s/pr59413.c.s +++ b/test/torture-s/pr59413.c.s @@ -35,4 +35,4 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr59643.c.s b/test/torture-s/pr59643.c.s index 31fea4ed1..b7852eced 100644 --- a/test/torture-s/pr59643.c.s +++ b/test/torture-s/pr59643.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32, i32, i32, f64, f64, i32 .local i32, i32, f64, f64 # BB#0: # %entry - block + block i32.const $push13=, -1 i32.add $push0=, $5, $pop13 i32.const $push1=, 2 @@ -27,7 +27,7 @@ foo: # @foo f64.load $9=, 0($0) .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push26=, -8 i32.add $push12=, $6, $pop26 f64.mul $push5=, $8, $4 @@ -85,7 +85,7 @@ main: # @main copy_local $2=, $6 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label2: + loop # label2: i32.const $push48=, 7 i32.and $push47=, $5, $pop48 tee_local $push46=, $0=, $pop47 @@ -127,8 +127,8 @@ main: # @main i32.const $4=, 0 .LBB1_3: # %for.body12 # =>This Inner Loop Header: Depth=1 - block - loop # label4: + block + loop # label4: i32.const $push31=, 512 i32.add $push32=, $6, $pop31 i32.add $push11=, $pop32, $5 @@ -205,5 +205,5 @@ expected: .size expected, 256 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr59747.c.s b/test/torture-s/pr59747.c.s index 3fb357053..d45306cac 100644 --- a/test/torture-s/pr59747.c.s +++ b/test/torture-s/pr59747.c.s @@ -31,7 +31,7 @@ main: # @main i32.store a($pop16), $pop0 i32.const $push15=, 0 i32.load16_u $0=, e($pop15) - block + block i32.const $push14=, 0 i32.load $push1=, c($pop14) i32.eqz $push22=, $pop1 @@ -50,7 +50,7 @@ main: # @main i32.const $push20=, 16 i32.shr_s $push5=, $pop4, $pop20 i32.store d($pop21), $pop5 - block + block i64.extend_u/i32 $push6=, $0 i64.const $push7=, 48 i64.shl $push8=, $pop6, $pop7 @@ -108,6 +108,6 @@ d: .size d, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/pr60017.c.s b/test/torture-s/pr60017.c.s index 3c08c1a6b..5390ed33f 100644 --- a/test/torture-s/pr60017.c.s +++ b/test/torture-s/pr60017.c.s @@ -27,7 +27,7 @@ func: # @func main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load16_u $push0=, x+12($pop3) i32.const $push1=, 9 @@ -62,5 +62,5 @@ x: .size x, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr60062.c.s b/test/torture-s/pr60062.c.s index 06367e6ec..de7e9ce38 100644 --- a/test/torture-s/pr60062.c.s +++ b/test/torture-s/pr60062.c.s @@ -23,4 +23,4 @@ a: .size a, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr60072.c.s b/test/torture-s/pr60072.c.s index ad1323d65..e030340ab 100644 --- a/test/torture-s/pr60072.c.s +++ b/test/torture-s/pr60072.c.s @@ -26,4 +26,4 @@ c: .size c, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr60454.c.s b/test/torture-s/pr60454.c.s index e58530268..c118dc249 100644 --- a/test/torture-s/pr60454.c.s +++ b/test/torture-s/pr60454.c.s @@ -38,7 +38,7 @@ fake_swap32: # @fake_swap32 main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, 305419896 i32.call $push1=, fake_swap32@FUNCTION, $pop0 i32.const $push2=, 2018934290 @@ -56,5 +56,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr60960.c.s b/test/torture-s/pr60960.c.s index 8b72b1487..d3258cac7 100644 --- a/test/torture-s/pr60960.c.s +++ b/test/torture-s/pr60960.c.s @@ -140,7 +140,7 @@ main: # @main i32.const $push25=, 5 i32.const $push24=, 5 call f1@FUNCTION, $pop18, $pop27, $pop26, $pop25, $pop24 - block + block i32.load $push0=, 12($0) i32.const $push23=, 33686018 i32.ne $push1=, $pop0, $pop23 @@ -189,5 +189,5 @@ main: # @main .size main, .Lfunc_end3-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr61306-1.c.s b/test/torture-s/pr61306-1.c.s index 5088b5a67..c32f65fd0 100644 --- a/test/torture-s/pr61306-1.c.s +++ b/test/torture-s/pr61306-1.c.s @@ -35,7 +35,7 @@ fake_bswap32: # @fake_bswap32 main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, -2023406815 i32.call $push1=, fake_bswap32@FUNCTION, $pop0 i32.const $push2=, -121 @@ -53,5 +53,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr61306-2.c.s b/test/torture-s/pr61306-2.c.s index 3f23eb41d..f02a883ca 100644 --- a/test/torture-s/pr61306-2.c.s +++ b/test/torture-s/pr61306-2.c.s @@ -37,7 +37,7 @@ fake_bswap32: # @fake_bswap32 main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, -2122153084 i32.call $push1=, fake_bswap32@FUNCTION, $pop0 i32.const $push2=, -8158591 @@ -55,5 +55,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr61306-3.c.s b/test/torture-s/pr61306-3.c.s index 45f8e0e35..4da537104 100644 --- a/test/torture-s/pr61306-3.c.s +++ b/test/torture-s/pr61306-3.c.s @@ -21,7 +21,7 @@ main: # @main i32.or $push6=, $0, $pop2 tee_local $push5=, $0=, $pop6 i32.store b($pop8), $pop5 - block + block i32.const $push3=, -1 i32.ne $push4=, $0, $pop3 br_if 0, $pop4 # 0: down to label0 @@ -63,5 +63,5 @@ b: .size b, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr61375.c.s b/test/torture-s/pr61375.c.s index 6c1e06527..d6a0bf2da 100644 --- a/test/torture-s/pr61375.c.s +++ b/test/torture-s/pr61375.c.s @@ -29,7 +29,7 @@ main: # @main .param i32 .result i32 # BB#0: # %entry - block + block i64.const $push2=, 0 i64.const $push1=, 1 i64.const $push0=, 2 @@ -49,5 +49,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr61673.c.s b/test/torture-s/pr61673.c.s index fcfc8e5d7..8b0c252de 100644 --- a/test/torture-s/pr61673.c.s +++ b/test/torture-s/pr61673.c.s @@ -7,8 +7,8 @@ bar: # @bar .param i32 # BB#0: # %entry - block - block + block + block i32.const $push0=, -121 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -34,7 +34,7 @@ bar: # @bar foo: # @foo .param i32 # BB#0: # %entry - block + block i32.load8_s $push4=, 0($0) tee_local $push3=, $0=, $pop4 i32.const $push0=, -1 @@ -58,7 +58,7 @@ foo: # @foo baz: # @baz .param i32 # BB#0: # %entry - block + block i32.load8_s $push4=, 0($0) tee_local $push3=, $0=, $pop4 i32.const $push0=, -1 @@ -86,7 +86,7 @@ main: # @main i32.store8 e($pop19), $pop0 i32.const $push1=, main.c call foo@FUNCTION, $pop1 - block + block i32.const $push18=, 0 i32.load8_u $push2=, e($pop18) i32.const $push17=, 33 @@ -145,5 +145,5 @@ main.c: .size main.c, 2 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr61725.c.s b/test/torture-s/pr61725.c.s index fb9680a67..4128a51e0 100644 --- a/test/torture-s/pr61725.c.s +++ b/test/torture-s/pr61725.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr63209.c.s b/test/torture-s/pr63209.c.s index 54fc92549..4dc2063af 100644 --- a/test/torture-s/pr63209.c.s +++ b/test/torture-s/pr63209.c.s @@ -57,4 +57,4 @@ main.top: .size main.top, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pr63302.c.s b/test/torture-s/pr63302.c.s index a5257bb17..849be66ac 100644 --- a/test/torture-s/pr63302.c.s +++ b/test/torture-s/pr63302.c.s @@ -52,7 +52,7 @@ bar: # @bar main: # @main .result i32 # BB#0: # %entry - block + block i64.const $push52=, 0 i64.const $push51=, 0 i32.call $push0=, foo@FUNCTION, $pop52, $pop51 @@ -161,5 +161,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr63659.c.s b/test/torture-s/pr63659.c.s index bb42c2b0a..00de6ee9a 100644 --- a/test/torture-s/pr63659.c.s +++ b/test/torture-s/pr63659.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32, i32 # BB#0: # %entry - block + block i32.const $push8=, 0 i32.load $push0=, a($pop8) i32.eqz $push23=, $pop0 @@ -28,7 +28,7 @@ main: # @main tee_local $push11=, $0=, $pop12 i32.store g($pop15), $pop11 i32.const $1=, 255 - block + block i32.eqz $push24=, $0 br_if 0, $pop24 # 0: down to label1 # BB#3: # %cond.false @@ -45,7 +45,7 @@ main: # @main i32.store8 e($pop19), $1 i32.const $push18=, 0 i32.store8 f($pop18), $1 - block + block i32.const $push17=, 0 i32.load $push6=, b($pop17) i32.const $push16=, 255 @@ -142,5 +142,5 @@ e: .size e, 1 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pr7284-1.c.s b/test/torture-s/pr7284-1.c.s index 3b2d12ebd..af01a611c 100644 --- a/test/torture-s/pr7284-1.c.s +++ b/test/torture-s/pr7284-1.c.s @@ -24,7 +24,7 @@ f: # @f main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push5=, 0 i32.load $push0=, x($pop5) i32.const $push1=, 255 @@ -54,6 +54,6 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/printf-1.c.s b/test/torture-s/printf-1.c.s index 74f7d8caa..4fb009ee2 100644 --- a/test/torture-s/printf-1.c.s +++ b/test/torture-s/printf-1.c.s @@ -18,7 +18,7 @@ main: # @main i32.const $push72=, .Lstr i32.const $push71=, 0 i32.call $drop=, printf@FUNCTION, $pop72, $pop71 - block + block i32.const $push70=, .Lstr i32.const $push69=, 0 i32.call $push0=, printf@FUNCTION, $pop70, $pop69 @@ -196,7 +196,7 @@ main: # @main .size .Lstr, 6 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype printf, i32, i32 .functype abort, void .functype puts, i32, i32 diff --git a/test/torture-s/printf-chk-1.c.s b/test/torture-s/printf-chk-1.c.s index ad745d745..a1921e85c 100644 --- a/test/torture-s/printf-chk-1.c.s +++ b/test/torture-s/printf-chk-1.c.s @@ -16,7 +16,7 @@ __printf_chk: # @__printf_chk i32.sub $push11=, $pop3, $pop4 tee_local $push10=, $3=, $pop11 i32.store __stack_pointer($pop5), $pop10 - block + block i32.const $push9=, 0 i32.load $push0=, should_optimize($pop9) br_if 0, $pop0 # 0: down to label0 @@ -60,7 +60,7 @@ main: # @main i32.const $push88=, .L.str i32.const $push87=, 0 i32.call $drop=, __printf_chk@FUNCTION, $0, $pop88, $pop87 - block + block i32.const $push86=, 0 i32.load $push0=, should_optimize($pop86) i32.eqz $push197=, $pop0 @@ -442,6 +442,6 @@ should_optimize: .size .L.str.7, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype vprintf, i32, i32, i32 diff --git a/test/torture-s/pta-field-1.c.s b/test/torture-s/pta-field-1.c.s index d69b09747..04040ed19 100644 --- a/test/torture-s/pta-field-1.c.s +++ b/test/torture-s/pta-field-1.c.s @@ -78,7 +78,7 @@ main: # @main i32.const $push13=, 8 i32.add $push14=, $0, $pop13 call bar@FUNCTION, $pop14 - block + block i32.load $push2=, 0($0) br_if 0, $pop2 # 0: down to label0 # BB#1: # %if.end @@ -97,5 +97,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/pta-field-2.c.s b/test/torture-s/pta-field-2.c.s index 7900c2ec6..db8a840f6 100644 --- a/test/torture-s/pta-field-2.c.s +++ b/test/torture-s/pta-field-2.c.s @@ -84,7 +84,7 @@ main: # @main i32.const $push2=, 4 i32.or $push3=, $pop16, $pop2 call bar@FUNCTION, $pop3 - block + block i32.load $push4=, 4($0) br_if 0, $pop4 # 0: down to label0 # BB#1: # %if.end @@ -103,5 +103,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/ptr-arith-1.c.s b/test/torture-s/ptr-arith-1.c.s index 2caed062c..7a74b4142 100644 --- a/test/torture-s/ptr-arith-1.c.s +++ b/test/torture-s/ptr-arith-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/pure-1.c.s b/test/torture-s/pure-1.c.s index 4122671f9..40eb8b44c 100644 --- a/test/torture-s/pure-1.c.s +++ b/test/torture-s/pure-1.c.s @@ -53,4 +53,4 @@ i: .size i, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/pushpop_macro.c.s b/test/torture-s/pushpop_macro.c.s index 1796ecd62..5fcfd1ed2 100644 --- a/test/torture-s/pushpop_macro.c.s +++ b/test/torture-s/pushpop_macro.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/regstack-1.c.s b/test/torture-s/regstack-1.c.s index 80c6f8434..eff8f90db 100644 --- a/test/torture-s/regstack-1.c.s +++ b/test/torture-s/regstack-1.c.s @@ -269,7 +269,7 @@ main: # @main i64.load $push138=, 0($16) tee_local $push137=, $0=, $pop138 i64.store Y1($pop139), $pop137 - block + block i64.const $push136=, 0 i64.const $push39=, 4612354521497075712 i32.call $push40=, __netf2@FUNCTION, $11, $10, $pop136, $pop39 @@ -422,6 +422,6 @@ S: .size S, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/restrict-1.c.s b/test/torture-s/restrict-1.c.s index ee9cafe62..286d3a91f 100644 --- a/test/torture-s/restrict-1.c.s +++ b/test/torture-s/restrict-1.c.s @@ -32,7 +32,7 @@ bar: # @bar tee_local $push5=, $1=, $pop6 i64.extend_u/i32 $push2=, $pop5 i64.store 0($0):p2align=2, $pop2 - block + block i32.const $push3=, 2 i32.ne $push4=, $1, $pop3 br_if 0, $pop4 # 0: down to label0 @@ -60,5 +60,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/scope-1.c.s b/test/torture-s/scope-1.c.s index 5461ebcd2..22884d32b 100644 --- a/test/torture-s/scope-1.c.s +++ b/test/torture-s/scope-1.c.s @@ -8,7 +8,7 @@ f: # @f .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load $push1=, v($pop0) i32.const $push2=, 3 @@ -49,6 +49,6 @@ v: .size v, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/shiftdi.c.s b/test/torture-s/shiftdi.c.s index 732f07548..0065e1674 100644 --- a/test/torture-s/shiftdi.c.s +++ b/test/torture-s/shiftdi.c.s @@ -41,4 +41,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/shiftopt-1.c.s b/test/torture-s/shiftopt-1.c.s index d14a0482b..1759e8e1d 100644 --- a/test/torture-s/shiftopt-1.c.s +++ b/test/torture-s/shiftopt-1.c.s @@ -38,4 +38,4 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/simd-1.c.s b/test/torture-s/simd-1.c.s index 586d99c41..486c5207e 100644 --- a/test/torture-s/simd-1.c.s +++ b/test/torture-s/simd-1.c.s @@ -7,7 +7,7 @@ verify: # @verify .param i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.ne $push0=, $0, $4 br_if 0, $pop0 # 0: down to label0 # BB#1: # %entry @@ -439,6 +439,6 @@ res: .size res, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/simd-2.c.s b/test/torture-s/simd-2.c.s index fe678033f..7a8b86136 100644 --- a/test/torture-s/simd-2.c.s +++ b/test/torture-s/simd-2.c.s @@ -7,7 +7,7 @@ verify: # @verify .param i32, i32, i32, i32, i32, i32, i32, i32 # BB#0: # %entry - block + block i32.ne $push0=, $0, $4 br_if 0, $pop0 # 0: down to label0 # BB#1: # %entry @@ -887,6 +887,6 @@ res: .size res, 16 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/simd-4.c.s b/test/torture-s/simd-4.c.s index 2b9d8a9ce..73f62966c 100644 --- a/test/torture-s/simd-4.c.s +++ b/test/torture-s/simd-4.c.s @@ -26,4 +26,4 @@ s64: .size s64, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/simd-5.c.s b/test/torture-s/simd-5.c.s index 97dc394b0..21d33ea5f 100644 --- a/test/torture-s/simd-5.c.s +++ b/test/torture-s/simd-5.c.s @@ -208,7 +208,7 @@ main: # @main .result i32 # BB#0: # %entry call func2@FUNCTION - block + block i32.const $push14=, 0 i64.load $push1=, w1($pop14) i32.const $push13=, 0 @@ -377,5 +377,5 @@ z4: .size z4, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/simd-6.c.s b/test/torture-s/simd-6.c.s index da7a1a185..fd5f58a24 100644 --- a/test/torture-s/simd-6.c.s +++ b/test/torture-s/simd-6.c.s @@ -56,4 +56,4 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/stdarg-1.c.s b/test/torture-s/stdarg-1.c.s index 9e3d2d0f3..23933d6a9 100644 --- a/test/torture-s/stdarg-1.c.s +++ b/test/torture-s/stdarg-1.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32, i32 # BB#0: # %entry - block + block i32.const $push0=, 5 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -32,9 +32,9 @@ bar: # @bar .param i32 .local i32, i32 # BB#0: # %entry - block - block - block + block + block + block i32.const $push0=, 16392 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label3 @@ -55,7 +55,7 @@ bar: # @bar i32.add $push45=, $pop46, $pop34 tee_local $push44=, $2=, $pop45 i32.store gap($pop49), $pop44 - block + block f64.load $push35=, 0($1) f64.const $push36=, 0x1.1p4 f64.ne $push37=, $pop35, $pop36 @@ -258,7 +258,7 @@ f4: # @f4 i32.add $push17=, $1, $pop5 tee_local $push16=, $1=, $pop17 i32.store 12($2), $pop16 - block + block i32.const $push6=, 5 i32.ne $push7=, $0, $pop6 br_if 0, $pop7 # 0: down to label5 @@ -441,7 +441,7 @@ main: # @main i32.const $push48=, 160 i32.add $push49=, $0, $pop48 call f2@FUNCTION, $0, $pop49 - block + block i32.const $push67=, 0 i32.load $push2=, bar_arg($pop67) i32.const $push66=, 28 @@ -643,5 +643,5 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/stdarg-2.c.s b/test/torture-s/stdarg-2.c.s index 64144bf5d..3b102a6b1 100644 --- a/test/torture-s/stdarg-2.c.s +++ b/test/torture-s/stdarg-2.c.s @@ -15,10 +15,10 @@ foo: # @foo i32.sub $push50=, $pop39, $pop40 tee_local $push49=, $2=, $pop50 i32.store __stack_pointer($pop41), $pop49 - block - block - block - block + block + block + block + block i32.const $push0=, 11 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label3 @@ -118,8 +118,8 @@ bar: # @bar .param i32 .local i32, i32 # BB#0: # %entry - block - block + block + block i32.const $push0=, 16386 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label5 @@ -194,8 +194,8 @@ f2: # @f2 # BB#0: # %entry i32.const $push15=, 0 i32.store gap($pop15), $1 - block - block + block + block i32.const $push0=, 16386 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label7 @@ -280,8 +280,8 @@ f4: # @f4 tee_local $push22=, $3=, $pop23 i32.store __stack_pointer($pop18), $pop22 i32.store 16($3), $1 - block - block + block + block i32.const $push0=, 16386 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label9 @@ -345,10 +345,10 @@ f5: # @f5 tee_local $push49=, $2=, $pop50 i32.store __stack_pointer($pop41), $pop49 i32.store 48($2), $1 - block - block - block - block + block + block + block + block i32.const $push0=, 11 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label13 @@ -481,8 +481,8 @@ f7: # @f7 tee_local $push22=, $3=, $pop23 i32.store __stack_pointer($pop18), $pop22 i32.store 4($3), $1 - block - block + block + block i32.const $push0=, 16386 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label15 @@ -546,10 +546,10 @@ f8: # @f8 tee_local $push49=, $2=, $pop50 i32.store __stack_pointer($pop41), $pop49 i32.store 36($2), $1 - block - block - block - block + block + block + block + block i32.const $push0=, 11 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label19 @@ -686,8 +686,8 @@ f11: # @f11 i32.const $push1=, 12 i32.add $push0=, $3, $pop1 i32.store 0($pop0), $1 - block - block + block + block i32.const $push2=, 16386 i32.ne $push3=, $0, $pop2 br_if 0, $pop3 # 0: down to label21 @@ -753,10 +753,10 @@ f12: # @f12 i32.const $push1=, 44 i32.add $push0=, $2, $pop1 i32.store 0($pop0), $1 - block - block - block - block + block + block + block + block i32.const $push2=, 11 i32.eq $push3=, $0, $pop2 br_if 0, $pop3 # 0: down to label25 @@ -868,7 +868,7 @@ main: # @main i32.const $push58=, 160 i32.add $push59=, $0, $pop58 call f1@FUNCTION, $0, $pop59 - block + block i32.const $push75=, 0 i32.load $push1=, x($pop75) i32.const $push74=, 79 @@ -1060,5 +1060,5 @@ d: .size d, 8 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/stdarg-3.c.s b/test/torture-s/stdarg-3.c.s index dbef354ba..a668da02c 100644 --- a/test/torture-s/stdarg-3.c.s +++ b/test/torture-s/stdarg-3.c.s @@ -28,7 +28,7 @@ f1: # @f1 i32.sub $push8=, $pop4, $pop5 tee_local $push7=, $3=, $pop8 i32.store 12($pop7), $1 - block + block i32.const $push6=, 1 i32.lt_s $push0=, $0, $pop6 br_if 0, $pop0 # 0: down to label0 @@ -38,7 +38,7 @@ f1: # @f1 i32.load $0=, 12($3) .LBB1_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label1: + loop # label1: i32.const $push17=, 4 i32.add $push16=, $0, $pop17 tee_local $push15=, $2=, $pop16 @@ -75,7 +75,7 @@ f2: # @f2 i32.sub $push9=, $pop5, $pop6 tee_local $push8=, $2=, $pop9 i32.store 12($pop8), $1 - block + block i32.const $push7=, 1 i32.lt_s $push0=, $0, $pop7 br_if 0, $pop0 # 0: down to label2 @@ -85,7 +85,7 @@ f2: # @f2 i32.load $0=, 12($2) .LBB2_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.const $push20=, 0 i32.const $push19=, 7 i32.add $push1=, $0, $pop19 @@ -124,7 +124,7 @@ f3: # @f3 i32.load $push4=, __stack_pointer($pop3) i32.const $push5=, 16 i32.sub $4=, $pop4, $pop5 - block + block i32.const $push6=, 1 i32.lt_s $push0=, $0, $pop6 br_if 0, $pop0 # 0: down to label4 @@ -135,7 +135,7 @@ f3: # @f3 i32.add $2=, $1, $pop1 .LBB3_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label5: + loop # label5: i32.store 12($4), $1 i32.store 12($4), $2 i32.const $push15=, 0 @@ -170,7 +170,7 @@ f4: # @f4 i32.load $push11=, __stack_pointer($pop10) i32.const $push12=, 16 i32.sub $4=, $pop11, $pop12 - block + block i32.const $push13=, 1 i32.lt_s $push0=, $0, $pop13 br_if 0, $pop0 # 0: down to label6 @@ -186,7 +186,7 @@ f4: # @f4 i32.add $3=, $pop14, $pop8 .LBB4_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label7: + loop # label7: i32.store 12($4), $1 i32.const $push24=, 0 i64.load $push4=, 0($2) @@ -227,7 +227,7 @@ f5: # @f5 i32.sub $push15=, $pop11, $pop12 tee_local $push14=, $2=, $pop15 i32.store 12($pop14), $1 - block + block i32.const $push13=, 1 i32.lt_s $push0=, $0, $pop13 br_if 0, $pop0 # 0: down to label8 @@ -237,7 +237,7 @@ f5: # @f5 i32.load $0=, 12($2) .LBB5_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label9: + loop # label9: i32.const $push32=, 0 i32.const $push31=, 7 i32.add $push1=, $0, $pop31 @@ -293,7 +293,7 @@ f6: # @f6 i32.sub $push11=, $pop7, $pop8 tee_local $push10=, $2=, $pop11 i32.store 12($pop10), $1 - block + block i32.const $push9=, 1 i32.lt_s $push0=, $0, $pop9 br_if 0, $pop0 # 0: down to label10 @@ -303,7 +303,7 @@ f6: # @f6 i32.load $0=, 12($2) .LBB6_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label11: + loop # label11: i32.const $push24=, 0 i32.const $push23=, 7 i32.add $push1=, $0, $pop23 @@ -347,7 +347,7 @@ f7: # @f7 i32.load $push22=, __stack_pointer($pop21) i32.const $push23=, 16 i32.sub $10=, $pop22, $pop23 - block + block i32.const $push24=, 1 i32.lt_s $push0=, $0, $pop24 br_if 0, $pop0 # 0: down to label12 @@ -375,7 +375,7 @@ f7: # @f7 i32.add $8=, $0, $pop17 .LBB7_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label13: + loop # label13: i32.store 12($10), $1 i32.const $push41=, 0 i32.load $push4=, 4($0) @@ -432,7 +432,7 @@ f8: # @f8 i32.load $push15=, __stack_pointer($pop14) i32.const $push16=, 16 i32.sub $6=, $pop15, $pop16 - block + block i32.const $push17=, 1 i32.lt_s $push0=, $0, $pop17 br_if 0, $pop0 # 0: down to label14 @@ -452,7 +452,7 @@ f8: # @f8 i32.add $4=, $0, $pop10 .LBB8_2: # %while.body # =>This Inner Loop Header: Depth=1 - loop # label15: + loop # label15: i32.store 12($6), $1 i32.const $push31=, 0 i32.load $push4=, 4($0) @@ -523,7 +523,7 @@ main: # @main i32.const $push245=, 624 i32.add $push246=, $3, $pop245 call f1@FUNCTION, $pop6, $pop246 - block + block i32.const $push419=, 0 i32.load $push7=, x($pop419) i32.const $push8=, 11 @@ -1265,5 +1265,5 @@ gap: .size gap, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/stdarg-4.c.s b/test/torture-s/stdarg-4.c.s index 25652e62c..78975523a 100644 --- a/test/torture-s/stdarg-4.c.s +++ b/test/torture-s/stdarg-4.c.s @@ -187,17 +187,17 @@ f3: # @f3 tee_local $push39=, $2=, $pop40 i32.store __stack_pointer($pop35), $pop39 i32.store 12($2), $1 - block + block i32.const $push0=, 4 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 # BB#1: # %entry i32.const $1=, 0 - block - block - block - block - block + block + block + block + block + block br_table $0, 4, 0, 1, 3, 2, 4 # 4: down to label1 # 0: down to label5 # 1: down to label4 @@ -298,9 +298,9 @@ f4: # @f4 tee_local $push41=, $4=, $pop42 i32.store __stack_pointer($pop37), $pop41 i32.store 12($4), $1 - block - block - block + block + block + block i32.const $push0=, 5 i32.eq $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label8 @@ -406,7 +406,7 @@ main: # @main i32.const $push85=, 192 i32.add $push86=, $0, $pop85 call f1@FUNCTION, $0, $pop86 - block + block i32.const $push103=, 0 i32.load $push4=, x($pop103) i32.const $push5=, 176 @@ -588,5 +588,5 @@ y: .size y, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/strcmp-1.c.s b/test/torture-s/strcmp-1.c.s index 2a8c34860..7b7252a1e 100644 --- a/test/torture-s/strcmp-1.c.s +++ b/test/torture-s/strcmp-1.c.s @@ -8,8 +8,8 @@ test: # @test .param i32, i32, i32 # BB#0: # %entry i32.call $0=, strcmp@FUNCTION, $0, $1 - block - block + block + block i32.const $push0=, -1 i32.gt_s $push1=, $2, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -19,13 +19,13 @@ test: # @test br_if 1, $pop3 # 1: down to label0 .LBB0_2: # %if.else end_block # label1: - block + block br_if 0, $2 # 0: down to label2 # BB#3: # %if.else br_if 1, $0 # 1: down to label0 .LBB0_4: # %if.else6 end_block # label2: - block + block i32.const $push4=, 1 i32.lt_s $push5=, $2, $pop4 br_if 0, $pop5 # 0: down to label3 @@ -58,24 +58,24 @@ main: # @main # =>This Loop Header: Depth=1 # Child Loop BB1_2 Depth 2 # Child Loop BB1_3 Depth 3 - block - block - loop # label6: + block + block + loop # label6: i32.const $2=, 0 i32.const $3=, u2 .LBB1_2: # %for.cond4.preheader # Parent Loop BB1_1 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB1_3 Depth 3 - loop # label7: + loop # label7: i32.const $4=, 0 .LBB1_3: # %for.cond7.preheader # Parent Loop BB1_1 Depth=1 # Parent Loop BB1_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label8: + loop # label8: i32.const $5=, u1 - block + block i32.eqz $push77=, $0 br_if 0, $pop77 # 0: down to label9 # BB#4: # %for.body9.preheader @@ -88,7 +88,7 @@ main: # @main # in Loop: Header=BB1_3 Depth=3 end_block # label9: copy_local $6=, $5 - block + block i32.eqz $push78=, $4 br_if 0, $pop78 # 0: down to label10 # BB#6: # %for.body12.preheader @@ -106,7 +106,7 @@ main: # @main i32.const $push28=, 30840 i32.store16 0($pop2):p2align=0, $pop28 i32.const $7=, u2 - block + block i32.eqz $push79=, $2 br_if 0, $pop79 # 0: down to label11 # BB#8: # %for.body26.preheader @@ -119,7 +119,7 @@ main: # @main # in Loop: Header=BB1_3 Depth=3 end_block # label11: copy_local $8=, $7 - block + block i32.eqz $push80=, $4 br_if 0, $pop80 # 0: down to label12 # BB#10: # %for.body33.preheader @@ -284,7 +284,7 @@ u2: .size u2, 96 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcmp, i32, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/strcpy-1.c.s b/test/torture-s/strcpy-1.c.s index 7a31bb90a..712e68fac 100644 --- a/test/torture-s/strcpy-1.c.s +++ b/test/torture-s/strcpy-1.c.s @@ -16,9 +16,9 @@ main: # @main # Child Loop BB0_4 Depth 4 # Child Loop BB0_8 Depth 4 # Child Loop BB0_12 Depth 4 - block - block - loop # label2: + block + block + loop # label2: i32.const $push52=, u1 i32.add $1=, $0, $pop52 i32.const $2=, 0 @@ -29,7 +29,7 @@ main: # @main # Child Loop BB0_4 Depth 4 # Child Loop BB0_8 Depth 4 # Child Loop BB0_12 Depth 4 - loop # label3: + loop # label3: i32.const $push54=, 65 i32.add $4=, $2, $pop54 i32.const $push53=, u2 @@ -42,7 +42,7 @@ main: # @main # Child Loop BB0_4 Depth 4 # Child Loop BB0_8 Depth 4 # Child Loop BB0_12 Depth 4 - loop # label4: + loop # label4: i32.const $push57=, u1 i32.const $push56=, 97 i32.const $push55=, 97 @@ -54,7 +54,7 @@ main: # @main # Parent Loop BB0_2 Depth=2 # Parent Loop BB0_3 Depth=3 # => This Inner Loop Header: Depth=4 - loop # label5: + loop # label5: i32.const $push68=, u2+97 i32.add $push3=, $7, $pop68 i32.const $push67=, 65 @@ -87,7 +87,7 @@ main: # @main # BB#6: # %for.cond21.preheader # in Loop: Header=BB0_3 Depth=3 i32.const $8=, u1 - block + block i32.const $push71=, 1 i32.lt_s $push8=, $0, $pop71 br_if 0, $pop8 # 0: down to label6 @@ -99,7 +99,7 @@ main: # @main # Parent Loop BB0_2 Depth=2 # Parent Loop BB0_3 Depth=3 # => This Inner Loop Header: Depth=4 - loop # label7: + loop # label7: i32.add $push9=, $9, $10 i32.load8_u $push10=, 0($pop9) i32.const $push72=, 97 @@ -127,7 +127,7 @@ main: # @main # Parent Loop BB0_2 Depth=2 # Parent Loop BB0_3 Depth=3 # => This Inner Loop Header: Depth=4 - loop # label8: + loop # label8: i32.const $push81=, 255 i32.and $push13=, $9, $pop81 i32.const $push80=, 65 @@ -286,7 +286,7 @@ u2: .size u2, 112 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcpy, i32, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/strct-pack-1.c.s b/test/torture-s/strct-pack-1.c.s index b71155931..1ae267802 100644 --- a/test/torture-s/strct-pack-1.c.s +++ b/test/torture-s/strct-pack-1.c.s @@ -10,7 +10,7 @@ check: # @check .local i32 # BB#0: # %entry i32.const $1=, 1 - block + block i32.load16_u $push0=, 0($0) i32.const $push5=, 1 i32.ne $push1=, $pop0, $pop5 @@ -45,5 +45,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/strct-pack-2.c.s b/test/torture-s/strct-pack-2.c.s index e62069cdc..e50646047 100644 --- a/test/torture-s/strct-pack-2.c.s +++ b/test/torture-s/strct-pack-2.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/strct-pack-3.c.s b/test/torture-s/strct-pack-3.c.s index f67d8fa61..03cf7002b 100644 --- a/test/torture-s/strct-pack-3.c.s +++ b/test/torture-s/strct-pack-3.c.s @@ -44,5 +44,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/strct-pack-4.c.s b/test/torture-s/strct-pack-4.c.s index 481b3f0ce..3845eb995 100644 --- a/test/torture-s/strct-pack-4.c.s +++ b/test/torture-s/strct-pack-4.c.s @@ -41,5 +41,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/strct-stdarg-1.c.s b/test/torture-s/strct-stdarg-1.c.s index 83689ea0c..5b2959a91 100644 --- a/test/torture-s/strct-stdarg-1.c.s +++ b/test/torture-s/strct-stdarg-1.c.s @@ -17,9 +17,9 @@ f: # @f tee_local $push36=, $3=, $pop37 i32.store __stack_pointer($pop31), $pop36 i32.store 12($3), $1 - block - block - block + block + block + block i32.const $push35=, 1 i32.lt_s $push3=, $0, $pop35 br_if 0, $pop3 # 0: down to label2 @@ -29,7 +29,7 @@ f: # @f i32.const $2=, 0 .LBB0_2: # %for.body # =>This Inner Loop Header: Depth=1 - loop # label3: + loop # label3: i32.store 12($3), $1 i32.const $push40=, 10 i32.add $push4=, $2, $pop40 @@ -220,6 +220,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/strct-varg-1.c.s b/test/torture-s/strct-varg-1.c.s index e050b5a38..e43c4038e 100644 --- a/test/torture-s/strct-varg-1.c.s +++ b/test/torture-s/strct-varg-1.c.s @@ -17,7 +17,7 @@ f: # @f tee_local $push31=, $2=, $pop32 i32.store __stack_pointer($pop27), $pop31 i32.store 12($2), $1 - block + block i32.const $push0=, 2 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -119,6 +119,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/string-opt-17.c.s b/test/torture-s/string-opt-17.c.s index 5092d9dd1..07928a17a 100644 --- a/test/torture-s/string-opt-17.c.s +++ b/test/torture-s/string-opt-17.c.s @@ -25,7 +25,7 @@ test1: # @test1 check2: # @check2 .result i32 # BB#0: # %entry - block + block i32.const $push4=, 0 i32.load $push0=, check2.r($pop4) i32.const $push1=, 5 @@ -52,7 +52,7 @@ check2: # @check2 test2: # @test2 .param i32 # BB#0: # %entry - block + block i32.const $push5=, 0 i32.load $push0=, check2.r($pop5) i32.const $push1=, 5 @@ -94,7 +94,7 @@ main: # @main i32.const $push17=, 0 i32.load16_u $push1=, .L.str+7($pop17):p2align=0 i32.store16 4($0), $pop1 - block + block i32.const $push15=, 4 i32.add $push16=, $0, $pop15 i32.const $push3=, .L.str.1 @@ -153,7 +153,7 @@ check2.r: .size .L.str.2, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strcpy, i32, i32, i32 .functype abort, void .functype memcmp, i32, i32, i32, i32 diff --git a/test/torture-s/string-opt-18.c.s b/test/torture-s/string-opt-18.c.s index 003c818a1..671ca00b1 100644 --- a/test/torture-s/string-opt-18.c.s +++ b/test/torture-s/string-opt-18.c.s @@ -21,7 +21,7 @@ test2: # @test2 # BB#0: # %entry i64.load $push0=, 0($0):p2align=0 i64.store 0($0):p2align=0, $pop0 - block + block i32.const $push1=, 1 i32.eqz $push2=, $pop1 br_if 0, $pop2 # 0: down to label0 @@ -112,7 +112,7 @@ main: # @main i32.store __stack_pointer($pop6), $pop10 i64.load $push0=, 4($0):p2align=2 i64.store 4($0):p2align=2, $pop0 - block + block i32.const $push1=, 1 i32.eqz $push12=, $pop1 br_if 0, $pop12 # 0: down to label1 @@ -132,6 +132,6 @@ main: # @main .size main, .Lfunc_end7-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype mempcpy, i32, i32, i32, i32 diff --git a/test/torture-s/string-opt-5.c.s b/test/torture-s/string-opt-5.c.s index 9a4424858..8e7464ae2 100644 --- a/test/torture-s/string-opt-5.c.s +++ b/test/torture-s/string-opt-5.c.s @@ -15,7 +15,7 @@ main: # @main i32.sub $push122=, $pop112, $pop113 tee_local $push121=, $4=, $pop122 i32.store __stack_pointer($pop114), $pop121 - block + block i32.const $push120=, 0 i32.load $push119=, bar($pop120) tee_local $push118=, $0=, $pop119 @@ -389,7 +389,7 @@ buf: .size .L.str.12, 11 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strlen, i32, i32 .functype abort, void .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/strlen-1.c.s b/test/torture-s/strlen-1.c.s index 1d339d329..d1e848ca1 100644 --- a/test/torture-s/strlen-1.c.s +++ b/test/torture-s/strlen-1.c.s @@ -13,17 +13,17 @@ main: # @main .LBB0_1: # %for.cond1.preheader # =>This Loop Header: Depth=1 # Child Loop BB0_2 Depth 2 - block - loop # label1: + block + loop # label1: i32.const $push7=, u i32.add $0=, $1, $pop7 i32.const $3=, 0 .LBB0_2: # %for.cond4.preheader # Parent Loop BB0_1 Depth=1 # => This Inner Loop Header: Depth=2 - loop # label2: + loop # label2: i32.const $4=, u - block + block i32.eqz $push23=, $1 br_if 0, $pop23 # 0: down to label3 # BB#3: # %for.body6.preheader @@ -35,7 +35,7 @@ main: # @main .LBB0_4: # %for.cond7.preheader # in Loop: Header=BB0_2 Depth=2 end_block # label3: - block + block i32.eqz $push24=, $3 br_if 0, $pop24 # 0: down to label4 # BB#5: # %for.body9.preheader @@ -95,7 +95,7 @@ u: .size u, 96 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strlen, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/strncmp-1.c.s b/test/torture-s/strncmp-1.c.s index 56c5e6154..defc3ab09 100644 --- a/test/torture-s/strncmp-1.c.s +++ b/test/torture-s/strncmp-1.c.s @@ -8,8 +8,8 @@ test: # @test .param i32, i32, i32, i32 # BB#0: # %entry i32.call $0=, strncmp@FUNCTION, $0, $1, $2 - block - block + block + block i32.const $push0=, -1 i32.gt_s $push1=, $3, $pop0 br_if 0, $pop1 # 0: down to label1 @@ -19,13 +19,13 @@ test: # @test br_if 1, $pop3 # 1: down to label0 .LBB0_2: # %if.else end_block # label1: - block + block br_if 0, $3 # 0: down to label2 # BB#3: # %if.else br_if 1, $0 # 1: down to label0 .LBB0_4: # %if.else6 end_block # label2: - block + block i32.const $push4=, 1 i32.lt_s $push5=, $3, $pop4 br_if 0, $pop5 # 0: down to label3 @@ -58,24 +58,24 @@ main: # @main # =>This Loop Header: Depth=1 # Child Loop BB1_2 Depth 2 # Child Loop BB1_3 Depth 3 - block - block - loop # label6: + block + block + loop # label6: i32.const $2=, 0 i32.const $3=, u2 .LBB1_2: # %for.cond4.preheader # Parent Loop BB1_1 Depth=1 # => This Loop Header: Depth=2 # Child Loop BB1_3 Depth 3 - loop # label7: + loop # label7: i32.const $4=, 0 .LBB1_3: # %for.cond7.preheader # Parent Loop BB1_1 Depth=1 # Parent Loop BB1_2 Depth=2 # => This Inner Loop Header: Depth=3 - loop # label8: + loop # label8: i32.const $5=, u1 - block + block i32.eqz $push89=, $0 br_if 0, $pop89 # 0: down to label9 # BB#4: # %for.body9.preheader @@ -88,7 +88,7 @@ main: # @main # in Loop: Header=BB1_3 Depth=3 end_block # label9: copy_local $6=, $5 - block + block i32.eqz $push90=, $4 br_if 0, $pop90 # 0: down to label10 # BB#6: # %for.body12.preheader @@ -102,7 +102,7 @@ main: # @main i64.const $push35=, 8680820740569200760 i64.store 0($6):p2align=0, $pop35 i32.const $7=, u2 - block + block i32.eqz $push91=, $2 br_if 0, $pop91 # 0: down to label11 # BB#8: # %for.body26.preheader @@ -115,7 +115,7 @@ main: # @main # in Loop: Header=BB1_3 Depth=3 end_block # label11: copy_local $8=, $7 - block + block i32.eqz $push92=, $4 br_if 0, $pop92 # 0: down to label12 # BB#10: # %for.body33.preheader @@ -321,7 +321,7 @@ u2: .size u2, 80 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype strncmp, i32, i32, i32, i32 .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/struct-aliasing-1.c.s b/test/torture-s/struct-aliasing-1.c.s index 32f39379b..3a958c86c 100644 --- a/test/torture-s/struct-aliasing-1.c.s +++ b/test/torture-s/struct-aliasing-1.c.s @@ -36,7 +36,7 @@ main: # @main i32.store __stack_pointer($pop7), $pop16 i32.const $push0=, 1 i32.store 12($0), $pop0 - block + block i32.const $push11=, 12 i32.add $push12=, $0, $pop11 i32.const $push13=, 12 @@ -61,5 +61,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/struct-cpy-1.c.s b/test/torture-s/struct-cpy-1.c.s index a169035ee..797dd3881 100644 --- a/test/torture-s/struct-cpy-1.c.s +++ b/test/torture-s/struct-cpy-1.c.s @@ -74,4 +74,4 @@ pty: .size pty, 88 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/struct-ini-1.c.s b/test/torture-s/struct-ini-1.c.s index d5d55d0c7..9c3c1cd2c 100644 --- a/test/torture-s/struct-ini-1.c.s +++ b/test/torture-s/struct-ini-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push10=, 0 i32.load8_u $push2=, object($pop10) i32.const $push3=, 88 @@ -50,6 +50,6 @@ object: .size object, 12 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/struct-ini-2.c.s b/test/torture-s/struct-ini-2.c.s index 242f00d9b..ff3b844ee 100644 --- a/test/torture-s/struct-ini-2.c.s +++ b/test/torture-s/struct-ini-2.c.s @@ -8,7 +8,7 @@ main: # @main .result i32 .local i32 # BB#0: # %entry - block + block i32.const $push0=, 0 i32.load16_u $push15=, x($pop0) tee_local $push14=, $0=, $pop15 @@ -53,6 +53,6 @@ x: .size x, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/struct-ini-3.c.s b/test/torture-s/struct-ini-3.c.s index a90e200ad..29cab3511 100644 --- a/test/torture-s/struct-ini-3.c.s +++ b/test/torture-s/struct-ini-3.c.s @@ -26,5 +26,5 @@ result: .size result, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/struct-ini-4.c.s b/test/torture-s/struct-ini-4.c.s index 9a9e4fc5f..d6baf6b39 100644 --- a/test/torture-s/struct-ini-4.c.s +++ b/test/torture-s/struct-ini-4.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, s+12($pop3) i32.const $push1=, 1 @@ -38,6 +38,6 @@ s: .size s, 24 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/struct-ret-1.c.s b/test/torture-s/struct-ret-1.c.s index 437cf49a7..87f8251e6 100644 --- a/test/torture-s/struct-ret-1.c.s +++ b/test/torture-s/struct-ret-1.c.s @@ -196,7 +196,7 @@ main: # @main i32.const $push55=, 24 i32.add $push56=, $8, $pop55 call_indirect $3, $pop54, $pop56, $2, $0, $8 - block + block i32.const $push57=, 144 i32.add $push58=, $8, $pop57 i32.const $push59=, out @@ -420,7 +420,7 @@ fp: .size fp, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype sprintf, i32, i32, i32 .functype strcpy, i32, i32, i32 .functype strcmp, i32, i32, i32 diff --git a/test/torture-s/struct-ret-2.c.s b/test/torture-s/struct-ret-2.c.s index ff749a10e..2b0cc303d 100644 --- a/test/torture-s/struct-ret-2.c.s +++ b/test/torture-s/struct-ret-2.c.s @@ -41,5 +41,5 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/switch-1.c.s b/test/torture-s/switch-1.c.s index 63a2098a2..503c2318c 100644 --- a/test/torture-s/switch-1.c.s +++ b/test/torture-s/switch-1.c.s @@ -8,7 +8,7 @@ foo: # @foo .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, -4 i32.add $push10=, $0, $pop0 tee_local $push9=, $0=, $pop10 @@ -42,14 +42,14 @@ main: # @main i32.const $1=, -1 .LBB1_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - block - block - block - block - loop # label6: + block + block + block + block + block + loop # label6: i32.const $3=, 31 - block + block i32.const $push15=, -4 i32.add $push14=, $1, $pop15 tee_local $push13=, $2=, $pop14 @@ -67,16 +67,16 @@ main: # @main .LBB1_3: # %foo.exit # in Loop: Header=BB1_1 Depth=1 end_block # label7: - block - block - block - block - block - block + block + block + block + block + block + block br_if 0, $4 # 0: down to label13 # BB#4: # %foo.exit # in Loop: Header=BB1_1 Depth=1 - block + block br_table $2, 0, 1, 2, 1, 1, 3, 1, 4, 0 # 0: down to label14 # 1: down to label13 # 2: down to label12 @@ -174,5 +174,5 @@ main: # @main .size .Lswitch.table, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/tstdi-1.c.s b/test/torture-s/tstdi-1.c.s index 34ef6809d..b4b78b3c2 100644 --- a/test/torture-s/tstdi-1.c.s +++ b/test/torture-s/tstdi-1.c.s @@ -121,5 +121,5 @@ main: # @main .size main, .Lfunc_end6-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/unroll-1.c.s b/test/torture-s/unroll-1.c.s index 65a60dc7b..8bd332c4c 100644 --- a/test/torture-s/unroll-1.c.s +++ b/test/torture-s/unroll-1.c.s @@ -30,5 +30,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/usmul.c.s b/test/torture-s/usmul.c.s index 3590c2a5c..e8d32f21a 100644 --- a/test/torture-s/usmul.c.s +++ b/test/torture-s/usmul.c.s @@ -35,7 +35,7 @@ bar: # @bar main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push0=, -2 i32.const $push33=, 65535 i32.call $push1=, foo@FUNCTION, $pop0, $pop33 @@ -104,6 +104,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-1.c.s b/test/torture-s/va-arg-1.c.s index d2eee95cd..e258d18ab 100644 --- a/test/torture-s/va-arg-1.c.s +++ b/test/torture-s/va-arg-1.c.s @@ -21,7 +21,7 @@ f: # @f i32.add $push19=, $9, $pop0 tee_local $push18=, $10=, $pop19 i32.store 12($12), $pop18 - block + block i32.load $push1=, 0($9) i32.const $push2=, 10 i32.ne $push3=, $pop1, $pop2 @@ -83,6 +83,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-10.c.s b/test/torture-s/va-arg-10.c.s index af8a94a20..13e2f6296 100644 --- a/test/torture-s/va-arg-10.c.s +++ b/test/torture-s/va-arg-10.c.s @@ -8,7 +8,7 @@ to_hex: # @to_hex .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 16 i32.ge_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -43,7 +43,7 @@ fap: # @fap i32.store 12($4), $2 i32.load $push0=, 12($4) i32.store 8($4), $pop0 - block + block i32.call $push2=, strlen@FUNCTION, $1 i32.const $push21=, 16 i32.sub $push1=, $pop21, $0 @@ -53,8 +53,8 @@ fap: # @fap copy_local $0=, $1 .LBB1_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.load8_u $push25=, 0($0) tee_local $push24=, $2=, $pop25 i32.eqz $push44=, $pop24 @@ -88,8 +88,8 @@ fap: # @fap end_block # label2: .LBB1_7: # %while.cond6 # =>This Inner Loop Header: Depth=1 - block - loop # label5: + block + loop # label5: i32.load8_u $push35=, 0($1) tee_local $push34=, $0=, $pop35 i32.eqz $push45=, $pop34 @@ -970,7 +970,7 @@ main: # @main .size .L.str, 17 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype strlen, i32, i32 .functype exit, void, i32 diff --git a/test/torture-s/va-arg-11.c.s b/test/torture-s/va-arg-11.c.s index 3aa29824f..9efd303f3 100644 --- a/test/torture-s/va-arg-11.c.s +++ b/test/torture-s/va-arg-11.c.s @@ -23,7 +23,7 @@ main: # @main i64.store 8($0), $pop2 i64.const $push3=, 12884901892 i64.store 0($0), $pop3 - block + block i32.call $push4=, foo@FUNCTION, $0, $0 br_if 0, $pop4 # 0: down to label0 # BB#1: # %if.end @@ -63,6 +63,6 @@ foo: # @foo .size foo, .Lfunc_end1-foo - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-12.c.s b/test/torture-s/va-arg-12.c.s index c30688c47..da9a4a423 100644 --- a/test/torture-s/va-arg-12.c.s +++ b/test/torture-s/va-arg-12.c.s @@ -25,7 +25,7 @@ f: # @f i32.add $push24=, $pop25, $pop3 tee_local $push23=, $10=, $pop24 i32.store 12($12), $pop23 - block + block f64.load $push4=, 0($9) f64.const $push5=, 0x1.4p3 f64.ne $push6=, $pop4, $pop5 @@ -93,6 +93,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-13.c.s b/test/torture-s/va-arg-13.c.s index 5e2a27149..e32c0c3d8 100644 --- a/test/torture-s/va-arg-13.c.s +++ b/test/torture-s/va-arg-13.c.s @@ -7,7 +7,7 @@ dummy: # @dummy .param i32 # BB#0: # %entry - block + block i32.load $push0=, 0($0) i32.const $push1=, 1234 i32.ne $push2=, $pop0, $pop1 @@ -38,7 +38,7 @@ test: # @test tee_local $push15=, $2=, $pop16 i32.store __stack_pointer($pop10), $pop15 i32.store 4($2), $1 - block + block i32.load $push1=, 0($1) i32.const $push14=, 1234 i32.ne $push2=, $pop1, $pop14 @@ -92,6 +92,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-14.c.s b/test/torture-s/va-arg-14.c.s index 46a0c6da3..035ea1cb1 100644 --- a/test/torture-s/va-arg-14.c.s +++ b/test/torture-s/va-arg-14.c.s @@ -25,7 +25,7 @@ vat: # @vat i32.const $push32=, 4 i32.add $push0=, $pop33, $pop32 i32.store 8($2), $pop0 - block + block i32.load $push1=, 0($0) i32.const $push31=, 1 i32.ne $push2=, $pop1, $pop31 @@ -147,6 +147,6 @@ global: .size global, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-15.c.s b/test/torture-s/va-arg-15.c.s index e40e2195e..588be0980 100644 --- a/test/torture-s/va-arg-15.c.s +++ b/test/torture-s/va-arg-15.c.s @@ -19,11 +19,11 @@ vafunction: # @vafunction i32.const $2=, 1 .LBB0_1: # %for.body # =>This Inner Loop Header: Depth=1 - block - block - loop # label2: - block - block + block + block + loop # label2: + block + block i32.const $push18=, -1 i32.add $push0=, $2, $pop18 i32.const $push17=, 1 @@ -176,6 +176,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-16.c.s b/test/torture-s/va-arg-16.c.s index dc91ecfce..0260b8887 100644 --- a/test/torture-s/va-arg-16.c.s +++ b/test/torture-s/va-arg-16.c.s @@ -16,7 +16,7 @@ vafunction: # @vafunction tee_local $push52=, $5=, $pop53 i32.store __stack_pointer($pop48), $pop52 i32.store 12($5), $2 - block + block f64.const $push0=, 0x1.bcp9 f64.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -182,6 +182,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-17.c.s b/test/torture-s/va-arg-17.c.s index 049d206e0..2eb5d3f29 100644 --- a/test/torture-s/va-arg-17.c.s +++ b/test/torture-s/va-arg-17.c.s @@ -25,7 +25,7 @@ vafunction: # @vafunction i32.add $push48=, $pop49, $pop3 tee_local $push47=, $2=, $pop48 i32.store 12($4), $pop47 - block + block f64.load $push4=, 0($1) f64.const $push5=, 0x1p0 f64.ne $push6=, $pop4, $pop5 @@ -171,6 +171,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-18.c.s b/test/torture-s/va-arg-18.c.s index ab095b608..9340ff094 100644 --- a/test/torture-s/va-arg-18.c.s +++ b/test/torture-s/va-arg-18.c.s @@ -20,7 +20,7 @@ f: # @f i32.add $push20=, $9, $pop0 tee_local $push19=, $10=, $pop20 i32.store 12($12), $pop19 - block + block i32.load $push1=, 0($9) i32.const $push2=, 10 i32.ne $push3=, $pop1, $pop2 @@ -84,6 +84,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-19.c.s b/test/torture-s/va-arg-19.c.s index fb58f5150..d83e6bc62 100644 --- a/test/torture-s/va-arg-19.c.s +++ b/test/torture-s/va-arg-19.c.s @@ -20,7 +20,7 @@ vafunction: # @vafunction i32.add $push45=, $1, $pop0 tee_local $push44=, $2=, $pop45 i32.store 12($4), $pop44 - block + block i32.load $push1=, 0($1) i32.const $push2=, 1 i32.ne $push3=, $pop1, $pop2 @@ -150,6 +150,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-2.c.s b/test/torture-s/va-arg-2.c.s index 71122c765..a632ec77a 100644 --- a/test/torture-s/va-arg-2.c.s +++ b/test/torture-s/va-arg-2.c.s @@ -8,7 +8,7 @@ to_hex: # @to_hex .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 16 i32.ge_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -41,7 +41,7 @@ f0: # @f0 tee_local $push15=, $3=, $pop16 i32.store __stack_pointer($pop10), $pop15 i32.store 12($3), $1 - block + block i32.call $push0=, strlen@FUNCTION, $0 i32.const $push14=, 16 i32.ne $push1=, $pop0, $pop14 @@ -49,8 +49,8 @@ f0: # @f0 # BB#1: .LBB1_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.load8_u $push18=, 0($0) tee_local $push17=, $1=, $pop18 i32.eqz $push27=, $pop17 @@ -111,7 +111,7 @@ f1: # @f1 tee_local $push15=, $4=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($4), $2 - block + block i32.call $push0=, strlen@FUNCTION, $1 i32.const $push1=, 15 i32.ne $push2=, $pop0, $pop1 @@ -119,8 +119,8 @@ f1: # @f1 # BB#1: .LBB2_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label6: + block + loop # label6: i32.load8_u $push18=, 0($1) tee_local $push17=, $2=, $pop18 i32.eqz $push27=, $pop17 @@ -181,7 +181,7 @@ f2: # @f2 tee_local $push15=, $5=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($5), $3 - block + block i32.call $push0=, strlen@FUNCTION, $2 i32.const $push1=, 14 i32.ne $push2=, $pop0, $pop1 @@ -189,8 +189,8 @@ f2: # @f2 # BB#1: .LBB3_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label9: + block + loop # label9: i32.load8_u $push18=, 0($2) tee_local $push17=, $3=, $pop18 i32.eqz $push27=, $pop17 @@ -251,7 +251,7 @@ f3: # @f3 tee_local $push15=, $6=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($6), $4 - block + block i32.call $push0=, strlen@FUNCTION, $3 i32.const $push1=, 13 i32.ne $push2=, $pop0, $pop1 @@ -259,8 +259,8 @@ f3: # @f3 # BB#1: .LBB4_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label12: + block + loop # label12: i32.load8_u $push18=, 0($3) tee_local $push17=, $4=, $pop18 i32.eqz $push27=, $pop17 @@ -321,7 +321,7 @@ f4: # @f4 tee_local $push15=, $7=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($7), $5 - block + block i32.call $push0=, strlen@FUNCTION, $4 i32.const $push1=, 12 i32.ne $push2=, $pop0, $pop1 @@ -329,8 +329,8 @@ f4: # @f4 # BB#1: .LBB5_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label15: + block + loop # label15: i32.load8_u $push18=, 0($4) tee_local $push17=, $5=, $pop18 i32.eqz $push27=, $pop17 @@ -391,7 +391,7 @@ f5: # @f5 tee_local $push15=, $8=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($8), $6 - block + block i32.call $push0=, strlen@FUNCTION, $5 i32.const $push1=, 11 i32.ne $push2=, $pop0, $pop1 @@ -399,8 +399,8 @@ f5: # @f5 # BB#1: .LBB6_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label18: + block + loop # label18: i32.load8_u $push18=, 0($5) tee_local $push17=, $6=, $pop18 i32.eqz $push27=, $pop17 @@ -461,7 +461,7 @@ f6: # @f6 tee_local $push15=, $9=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($9), $7 - block + block i32.call $push0=, strlen@FUNCTION, $6 i32.const $push1=, 10 i32.ne $push2=, $pop0, $pop1 @@ -469,8 +469,8 @@ f6: # @f6 # BB#1: .LBB7_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label21: + block + loop # label21: i32.load8_u $push18=, 0($6) tee_local $push17=, $7=, $pop18 i32.eqz $push27=, $pop17 @@ -531,7 +531,7 @@ f7: # @f7 tee_local $push15=, $10=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($10), $8 - block + block i32.call $push0=, strlen@FUNCTION, $7 i32.const $push1=, 9 i32.ne $push2=, $pop0, $pop1 @@ -539,8 +539,8 @@ f7: # @f7 # BB#1: .LBB8_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label24: + block + loop # label24: i32.load8_u $push18=, 0($7) tee_local $push17=, $8=, $pop18 i32.eqz $push27=, $pop17 @@ -601,7 +601,7 @@ f8: # @f8 tee_local $push15=, $11=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($11), $9 - block + block i32.call $push0=, strlen@FUNCTION, $8 i32.const $push1=, 8 i32.ne $push2=, $pop0, $pop1 @@ -609,8 +609,8 @@ f8: # @f8 # BB#1: .LBB9_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label27: + block + loop # label27: i32.load8_u $push18=, 0($8) tee_local $push17=, $9=, $pop18 i32.eqz $push27=, $pop17 @@ -671,7 +671,7 @@ f9: # @f9 tee_local $push15=, $12=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($12), $10 - block + block i32.call $push0=, strlen@FUNCTION, $9 i32.const $push1=, 7 i32.ne $push2=, $pop0, $pop1 @@ -679,8 +679,8 @@ f9: # @f9 # BB#1: .LBB10_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label30: + block + loop # label30: i32.load8_u $push18=, 0($9) tee_local $push17=, $10=, $pop18 i32.eqz $push27=, $pop17 @@ -741,7 +741,7 @@ f10: # @f10 tee_local $push15=, $13=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($13), $11 - block + block i32.call $push0=, strlen@FUNCTION, $10 i32.const $push1=, 6 i32.ne $push2=, $pop0, $pop1 @@ -749,8 +749,8 @@ f10: # @f10 # BB#1: .LBB11_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label33: + block + loop # label33: i32.load8_u $push18=, 0($10) tee_local $push17=, $11=, $pop18 i32.eqz $push27=, $pop17 @@ -811,7 +811,7 @@ f11: # @f11 tee_local $push15=, $14=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($14), $12 - block + block i32.call $push0=, strlen@FUNCTION, $11 i32.const $push1=, 5 i32.ne $push2=, $pop0, $pop1 @@ -819,8 +819,8 @@ f11: # @f11 # BB#1: .LBB12_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label36: + block + loop # label36: i32.load8_u $push18=, 0($11) tee_local $push17=, $12=, $pop18 i32.eqz $push27=, $pop17 @@ -881,7 +881,7 @@ f12: # @f12 tee_local $push15=, $15=, $pop16 i32.store __stack_pointer($pop10), $pop15 i32.store 12($15), $13 - block + block i32.call $push0=, strlen@FUNCTION, $12 i32.const $push14=, 4 i32.ne $push1=, $pop0, $pop14 @@ -889,8 +889,8 @@ f12: # @f12 # BB#1: .LBB13_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label39: + block + loop # label39: i32.load8_u $push18=, 0($12) tee_local $push17=, $13=, $pop18 i32.eqz $push27=, $pop17 @@ -951,7 +951,7 @@ f13: # @f13 tee_local $push15=, $16=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($16), $14 - block + block i32.call $push0=, strlen@FUNCTION, $13 i32.const $push1=, 3 i32.ne $push2=, $pop0, $pop1 @@ -959,8 +959,8 @@ f13: # @f13 # BB#1: .LBB14_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label42: + block + loop # label42: i32.load8_u $push18=, 0($13) tee_local $push17=, $14=, $pop18 i32.eqz $push27=, $pop17 @@ -1021,7 +1021,7 @@ f14: # @f14 tee_local $push15=, $17=, $pop16 i32.store __stack_pointer($pop11), $pop15 i32.store 12($17), $15 - block + block i32.call $push0=, strlen@FUNCTION, $14 i32.const $push1=, 2 i32.ne $push2=, $pop0, $pop1 @@ -1029,8 +1029,8 @@ f14: # @f14 # BB#1: .LBB15_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label45: + block + loop # label45: i32.load8_u $push18=, 0($14) tee_local $push17=, $15=, $pop18 i32.eqz $push27=, $pop17 @@ -1091,7 +1091,7 @@ f15: # @f15 tee_local $push15=, $18=, $pop16 i32.store __stack_pointer($pop10), $pop15 i32.store 12($18), $16 - block + block i32.call $push0=, strlen@FUNCTION, $15 i32.const $push14=, 1 i32.ne $push1=, $pop0, $pop14 @@ -1099,8 +1099,8 @@ f15: # @f15 # BB#1: .LBB16_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label48: + block + loop # label48: i32.load8_u $push18=, 0($15) tee_local $push17=, $16=, $pop18 i32.eqz $push27=, $pop17 @@ -1549,7 +1549,7 @@ main: # @main .size .L.str, 17 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype strlen, i32, i32 .functype exit, void, i32 diff --git a/test/torture-s/va-arg-20.c.s b/test/torture-s/va-arg-20.c.s index 50727cbce..7977e57fa 100644 --- a/test/torture-s/va-arg-20.c.s +++ b/test/torture-s/va-arg-20.c.s @@ -7,7 +7,7 @@ foo: # @foo .param i32 # BB#0: # %entry - block + block i32.const $push0=, 7 i32.add $push1=, $0, $pop0 i32.const $push2=, -8 @@ -42,7 +42,7 @@ bar: # @bar tee_local $push14=, $3=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($3), $2 - block + block i32.const $push0=, 7 i32.add $push1=, $2, $pop0 i32.const $push2=, -8 @@ -93,6 +93,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-21.c.s b/test/torture-s/va-arg-21.c.s index feb501fa4..8eec1d68f 100644 --- a/test/torture-s/va-arg-21.c.s +++ b/test/torture-s/va-arg-21.c.s @@ -41,7 +41,7 @@ doit: # @doit i32.store 0($3), $1 i32.const $push2=, .L.str i32.call $drop=, vprintf@FUNCTION, $pop2, $1 - block + block i32.eqz $push4=, $3 br_if 0, $pop4 # 0: down to label0 # BB#1: # %if.end @@ -66,7 +66,7 @@ doit: # @doit .size .L.str.1, 13 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 .functype malloc, i32, i32 .functype vprintf, i32, i32, i32 diff --git a/test/torture-s/va-arg-22.c.s b/test/torture-s/va-arg-22.c.s index 099c6f915..4bbb1b14c 100644 --- a/test/torture-s/va-arg-22.c.s +++ b/test/torture-s/va-arg-22.c.s @@ -10,8 +10,8 @@ bar: # @bar # BB#0: # %entry i32.const $push0=, 0 i32.load $3=, bar.lastc($pop0) - block - block + block + block i32.const $push15=, 0 i32.load $push14=, bar.lastn($pop15) tee_local $push13=, $2=, $pop14 @@ -67,15 +67,15 @@ foo: # @foo i32.sub $push575=, $pop502, $pop503 tee_local $push574=, $9=, $pop575 i32.store __stack_pointer($pop504), $pop574 - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block i32.const $push0=, 21 i32.ne $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label10 @@ -87,7 +87,7 @@ foo: # @foo i32.const $push4=, 0 i32.load $0=, bar.lastc($pop4) i32.load8_s $8=, 0($1) - block + block i32.const $push578=, 0 i32.load $push577=, bar.lastn($pop578) tee_local $push576=, $2=, $pop577 @@ -560,7 +560,7 @@ foo: # @foo i32.load $push203=, 0($pop202):p2align=0 i32.store 300($9), $pop203 i32.load8_s $0=, 296($9) - block + block i32.const $push683=, 0 br_if 0, $pop683 # 0: down to label12 # BB#42: # %if.then.i410 @@ -731,7 +731,7 @@ foo: # @foo i32.load $push260=, 0($pop259):p2align=0 i32.store 284($9), $pop260 i32.load8_s $7=, 280($9) - block + block i32.const $push261=, 10 i32.eq $push262=, $8, $pop261 br_if 0, $pop262 # 0: down to label13 @@ -928,12 +928,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_67: # %for.body128 # =>This Inner Loop Header: Depth=1 - loop # label14: + loop # label14: i32.const $push516=, 264 i32.add $push517=, $9, $pop516 i32.add $push327=, $pop517, $2 i32.load8_s $3=, 0($pop327) - block + block i32.const $push837=, 11 i32.eq $push326=, $7, $pop837 br_if 0, $pop326 # 0: down to label15 @@ -1000,12 +1000,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_73: # %for.body140 # =>This Inner Loop Header: Depth=1 - loop # label16: + loop # label16: i32.const $push520=, 248 i32.add $push521=, $9, $pop520 i32.add $push343=, $pop521, $2 i32.load8_s $3=, 0($pop343) - block + block i32.const $push857=, 12 i32.eq $push342=, $7, $pop857 br_if 0, $pop342 # 0: down to label17 @@ -1080,12 +1080,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_79: # %for.body152 # =>This Inner Loop Header: Depth=1 - loop # label18: + loop # label18: i32.const $push526=, 232 i32.add $push527=, $9, $pop526 i32.add $push364=, $pop527, $2 i32.load8_s $3=, 0($pop364) - block + block i32.const $push877=, 13 i32.eq $push363=, $7, $pop877 br_if 0, $pop363 # 0: down to label19 @@ -1160,12 +1160,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_85: # %for.body164 # =>This Inner Loop Header: Depth=1 - loop # label20: + loop # label20: i32.const $push532=, 216 i32.add $push533=, $9, $pop532 i32.add $push385=, $pop533, $2 i32.load8_s $3=, 0($pop385) - block + block i32.const $push897=, 14 i32.eq $push384=, $7, $pop897 br_if 0, $pop384 # 0: down to label21 @@ -1248,12 +1248,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_91: # %for.body176 # =>This Inner Loop Header: Depth=1 - loop # label22: + loop # label22: i32.const $push540=, 200 i32.add $push541=, $9, $pop540 i32.add $push410=, $pop541, $2 i32.load8_s $3=, 0($pop410) - block + block i32.const $push918=, 15 i32.eq $push409=, $7, $pop918 br_if 0, $pop409 # 0: down to label23 @@ -1328,12 +1328,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_97: # %for.body188 # =>This Inner Loop Header: Depth=1 - loop # label24: + loop # label24: i32.const $push546=, 184 i32.add $push547=, $9, $pop546 i32.add $push431=, $pop547, $2 i32.load8_s $3=, 0($pop431) - block + block i32.const $push938=, 16 i32.eq $push430=, $7, $pop938 br_if 0, $pop430 # 0: down to label25 @@ -1390,12 +1390,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_103: # %for.body200 # =>This Inner Loop Header: Depth=1 - loop # label26: + loop # label26: i32.const $push550=, 152 i32.add $push551=, $9, $pop550 i32.add $push440=, $pop551, $2 i32.load8_s $3=, 0($pop440) - block + block i32.const $push957=, 31 i32.eq $push439=, $7, $pop957 br_if 0, $pop439 # 0: down to label27 @@ -1502,12 +1502,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_109: # %for.body212 # =>This Inner Loop Header: Depth=1 - loop # label28: + loop # label28: i32.const $push564=, 120 i32.add $push565=, $9, $pop564 i32.add $push476=, $pop565, $2 i32.load8_s $3=, 0($pop476) - block + block i32.const $push982=, 32 i32.eq $push475=, $7, $pop982 br_if 0, $pop475 # 0: down to label29 @@ -1562,12 +1562,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_115: # %for.body224 # =>This Inner Loop Header: Depth=1 - loop # label30: + loop # label30: i32.const $push568=, 80 i32.add $push569=, $9, $pop568 i32.add $push484=, $pop569, $2 i32.load8_s $3=, 0($pop484) - block + block i32.const $push1000=, 35 i32.eq $push483=, $7, $pop1000 br_if 0, $pop483 # 0: down to label31 @@ -1622,12 +1622,12 @@ foo: # @foo i32.const $2=, 0 .LBB1_121: # %for.body236 # =>This Inner Loop Header: Depth=1 - loop # label32: + loop # label32: i32.const $push572=, 8 i32.add $push573=, $9, $pop572 i32.add $push494=, $pop573, $2 i32.load8_s $7=, 0($pop494) - block + block i32.const $push1017=, 72 i32.eq $push493=, $8, $pop1017 br_if 0, $pop493 # 0: down to label33 @@ -2002,7 +2002,7 @@ main: # @main i32.const $0=, 0 .LBB2_1: # %for.body180 # =>This Inner Loop Header: Depth=1 - loop # label34: + loop # label34: i32.const $push258=, 552 i32.add $push259=, $1, $pop258 i32.add $push107=, $pop259, $0 @@ -2066,7 +2066,7 @@ main: # @main i32.const $0=, 0 .LBB2_3: # %for.body202 # =>This Inner Loop Header: Depth=1 - loop # label35: + loop # label35: i32.const $push260=, 480 i32.add $push261=, $1, $pop260 i32.add $push132=, $pop261, $0 @@ -2084,7 +2084,7 @@ main: # @main i32.const $0=, 0 .LBB2_5: # %for.body213 # =>This Inner Loop Header: Depth=1 - loop # label36: + loop # label36: i32.const $push262=, 408 i32.add $push263=, $1, $pop262 i32.add $push135=, $pop263, $0 @@ -2450,6 +2450,6 @@ bar.lastc: .size bar.lastc, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-23.c.s b/test/torture-s/va-arg-23.c.s index c15583702..fc9a040ea 100644 --- a/test/torture-s/va-arg-23.c.s +++ b/test/torture-s/va-arg-23.c.s @@ -19,7 +19,7 @@ foo: # @foo i32.const $push1=, 4 i32.add $push2=, $7, $pop1 i32.store 12($8), $pop2 - block + block i32.const $push3=, 1 i32.ne $push4=, $6, $pop3 br_if 0, $pop4 # 0: down to label0 @@ -76,5 +76,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/va-arg-24.c.s b/test/torture-s/va-arg-24.c.s index 2ce896f42..c60abe938 100644 --- a/test/torture-s/va-arg-24.c.s +++ b/test/torture-s/va-arg-24.c.s @@ -151,7 +151,7 @@ main: # @main i32.const $push73=, 10 i32.store 0($0), $pop73 call varargs9@FUNCTION, $0, $0, $0, $0, $0, $0, $0, $0, $0, $0, $0 - block + block i32.const $push72=, 0 i32.load $push25=, errors($pop72) br_if 0, $pop25 # 0: down to label0 @@ -219,8 +219,8 @@ varargs0: # @varargs0 i32.const $1=, 0 .LBB1_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label1: - block + loop # label1: + block i32.eq $push14=, $1, $3 br_if 0, $pop14 # 0: down to label2 # BB#2: # %if.then.i @@ -241,7 +241,7 @@ varargs0: # @varargs0 .LBB1_3: # %for.inc.i # in Loop: Header=BB1_1 Depth=1 end_block # label2: - block + block i32.const $push41=, 10 i32.eq $push17=, $1, $pop41 br_if 0, $pop17 # 0: down to label3 @@ -316,8 +316,8 @@ varargs1: # @varargs1 i32.const $2=, 0 .LBB2_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label4: - block + loop # label4: + block i32.eq $push14=, $2, $4 br_if 0, $pop14 # 0: down to label5 # BB#2: # %if.then.i @@ -338,7 +338,7 @@ varargs1: # @varargs1 .LBB2_3: # %for.inc.i # in Loop: Header=BB2_1 Depth=1 end_block # label5: - block + block i32.const $push40=, 10 i32.eq $push17=, $2, $pop40 br_if 0, $pop17 # 0: down to label6 @@ -413,8 +413,8 @@ varargs2: # @varargs2 i32.const $3=, 0 .LBB3_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label7: - block + loop # label7: + block i32.eq $push14=, $3, $5 br_if 0, $pop14 # 0: down to label8 # BB#2: # %if.then.i @@ -435,7 +435,7 @@ varargs2: # @varargs2 .LBB3_3: # %for.inc.i # in Loop: Header=BB3_1 Depth=1 end_block # label8: - block + block i32.const $push40=, 10 i32.eq $push17=, $3, $pop40 br_if 0, $pop17 # 0: down to label9 @@ -510,8 +510,8 @@ varargs3: # @varargs3 i32.const $4=, 0 .LBB4_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label10: - block + loop # label10: + block i32.eq $push14=, $4, $6 br_if 0, $pop14 # 0: down to label11 # BB#2: # %if.then.i @@ -532,7 +532,7 @@ varargs3: # @varargs3 .LBB4_3: # %for.inc.i # in Loop: Header=BB4_1 Depth=1 end_block # label11: - block + block i32.const $push40=, 10 i32.eq $push17=, $4, $pop40 br_if 0, $pop17 # 0: down to label12 @@ -605,8 +605,8 @@ varargs4: # @varargs4 i32.const $5=, 0 .LBB5_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label13: - block + loop # label13: + block i32.eq $push12=, $5, $7 br_if 0, $pop12 # 0: down to label14 # BB#2: # %if.then.i @@ -627,7 +627,7 @@ varargs4: # @varargs4 .LBB5_3: # %for.inc.i # in Loop: Header=BB5_1 Depth=1 end_block # label14: - block + block i32.const $push39=, 10 i32.eq $push15=, $5, $pop39 br_if 0, $pop15 # 0: down to label15 @@ -698,8 +698,8 @@ varargs5: # @varargs5 i32.const $6=, 0 .LBB6_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label16: - block + loop # label16: + block i32.eq $push12=, $6, $8 br_if 0, $pop12 # 0: down to label17 # BB#2: # %if.then.i @@ -720,7 +720,7 @@ varargs5: # @varargs5 .LBB6_3: # %for.inc.i # in Loop: Header=BB6_1 Depth=1 end_block # label17: - block + block i32.const $push38=, 10 i32.eq $push15=, $6, $pop38 br_if 0, $pop15 # 0: down to label18 @@ -791,8 +791,8 @@ varargs6: # @varargs6 i32.const $7=, 0 .LBB7_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label19: - block + loop # label19: + block i32.eq $push12=, $7, $9 br_if 0, $pop12 # 0: down to label20 # BB#2: # %if.then.i @@ -813,7 +813,7 @@ varargs6: # @varargs6 .LBB7_3: # %for.inc.i # in Loop: Header=BB7_1 Depth=1 end_block # label20: - block + block i32.const $push38=, 10 i32.eq $push15=, $7, $pop38 br_if 0, $pop15 # 0: down to label21 @@ -882,8 +882,8 @@ varargs7: # @varargs7 i32.const $8=, 0 .LBB8_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label22: - block + loop # label22: + block i32.eq $push11=, $8, $10 br_if 0, $pop11 # 0: down to label23 # BB#2: # %if.then.i @@ -904,7 +904,7 @@ varargs7: # @varargs7 .LBB8_3: # %for.inc.i # in Loop: Header=BB8_1 Depth=1 end_block # label23: - block + block i32.const $push37=, 10 i32.eq $push14=, $8, $pop37 br_if 0, $pop14 # 0: down to label24 @@ -973,8 +973,8 @@ varargs8: # @varargs8 i32.const $9=, 0 .LBB9_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label25: - block + loop # label25: + block i32.eq $push9=, $9, $11 br_if 0, $pop9 # 0: down to label26 # BB#2: # %if.then.i @@ -995,7 +995,7 @@ varargs8: # @varargs8 .LBB9_3: # %for.inc.i # in Loop: Header=BB9_1 Depth=1 end_block # label26: - block + block i32.const $push36=, 10 i32.eq $push12=, $9, $pop36 br_if 0, $pop12 # 0: down to label27 @@ -1059,8 +1059,8 @@ varargs9: # @varargs9 i32.const $10=, 0 .LBB10_1: # %for.body.i # =>This Inner Loop Header: Depth=1 - loop # label28: - block + loop # label28: + block i32.eq $push8=, $10, $12 br_if 0, $pop8 # 0: down to label29 # BB#2: # %if.then.i @@ -1081,7 +1081,7 @@ varargs9: # @varargs9 .LBB10_3: # %for.inc.i # in Loop: Header=BB10_1 Depth=1 end_block # label29: - block + block i32.const $push34=, 10 i32.eq $push11=, $10, $pop34 br_if 0, $pop11 # 0: down to label30 @@ -1170,7 +1170,7 @@ errors: .size .L.str.10, 9 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 .functype printf, i32, i32 diff --git a/test/torture-s/va-arg-26.c.s b/test/torture-s/va-arg-26.c.s index ac9ea4e5e..7340a6965 100644 --- a/test/torture-s/va-arg-26.c.s +++ b/test/torture-s/va-arg-26.c.s @@ -46,7 +46,7 @@ main: # @main i32.store __stack_pointer($pop8), $pop9 i64.const $push0=, 4619567317775286272 i64.store 0($1), $pop0 - block + block f64.call $push1=, f@FUNCTION, $0, $0, $0, $0, $0, $0, $1 f64.const $push2=, 0x1.cp2 f64.eq $push3=, $pop1, $pop2 @@ -64,6 +64,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-4.c.s b/test/torture-s/va-arg-4.c.s index 94b7a973d..ae01c779e 100644 --- a/test/torture-s/va-arg-4.c.s +++ b/test/torture-s/va-arg-4.c.s @@ -15,7 +15,7 @@ f: # @f i32.sub $push28=, $pop21, $pop22 tee_local $push27=, $4=, $pop28 i32.store __stack_pointer($pop23), $pop27 - block + block i32.load8_u $push0=, 0($0) i32.const $push1=, 97 i32.ne $push2=, $pop0, $pop1 @@ -123,6 +123,6 @@ main.x: .size main.x, 32 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-5.c.s b/test/torture-s/va-arg-5.c.s index 01c34a20d..2e68a5411 100644 --- a/test/torture-s/va-arg-5.c.s +++ b/test/torture-s/va-arg-5.c.s @@ -26,7 +26,7 @@ va_double: # @va_double i32.add $push28=, $pop29, $pop3 tee_local $push27=, $2=, $pop28 i32.store 12($4), $pop27 - block + block f64.load $push4=, 0($1) f64.const $push5=, 0x1.921fafc8b007ap1 f64.ne $push6=, $pop4, $pop5 @@ -97,7 +97,7 @@ va_long_double: # @va_long_double i32.add $push42=, $pop43, $pop3 tee_local $push41=, $2=, $pop42 i32.store 12($4), $pop41 - block + block i64.load $push5=, 0($1) i64.load $push4=, 8($1) i64.const $push7=, -7338557514379428662 @@ -227,6 +227,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-6.c.s b/test/torture-s/va-arg-6.c.s index a21f7f442..65da57c6c 100644 --- a/test/torture-s/va-arg-6.c.s +++ b/test/torture-s/va-arg-6.c.s @@ -21,7 +21,7 @@ f: # @f i32.add $push56=, $1, $pop0 tee_local $push55=, $2=, $pop56 i32.store 12($4), $pop55 - block + block i32.load $push1=, 0($1) i32.const $push2=, 10 i32.ne $push3=, $pop1, $pop2 @@ -188,6 +188,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-7.c.s b/test/torture-s/va-arg-7.c.s index 7b1199604..af971c9a6 100644 --- a/test/torture-s/va-arg-7.c.s +++ b/test/torture-s/va-arg-7.c.s @@ -20,7 +20,7 @@ debug: # @debug i32.add $push23=, $16, $pop0 tee_local $push22=, $17=, $pop23 i32.store 12($18), $pop22 - block + block i32.load $push1=, 0($16) i32.const $push21=, 8 i32.ne $push2=, $pop1, $pop21 @@ -85,6 +85,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-8.c.s b/test/torture-s/va-arg-8.c.s index b0ee56d4b..754594abe 100644 --- a/test/torture-s/va-arg-8.c.s +++ b/test/torture-s/va-arg-8.c.s @@ -20,7 +20,7 @@ debug: # @debug i32.add $push20=, $9, $pop0 tee_local $push19=, $10=, $pop20 i32.store 12($11), $pop19 - block + block i32.load $push1=, 0($9) i32.const $push2=, 10 i32.ne $push3=, $pop1, $pop2 @@ -80,6 +80,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/va-arg-9.c.s b/test/torture-s/va-arg-9.c.s index 7dadb042f..94e80af31 100644 --- a/test/torture-s/va-arg-9.c.s +++ b/test/torture-s/va-arg-9.c.s @@ -8,7 +8,7 @@ to_hex: # @to_hex .param i32 .result i32 # BB#0: # %entry - block + block i32.const $push0=, 16 i32.ge_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -33,7 +33,7 @@ fap: # @fap .param i32, i32, i32 .local i32 # BB#0: # %entry - block + block i32.call $push1=, strlen@FUNCTION, $1 i32.const $push7=, 16 i32.sub $push0=, $pop7, $0 @@ -42,8 +42,8 @@ fap: # @fap # BB#1: .LBB1_2: # %while.cond # =>This Inner Loop Header: Depth=1 - block - loop # label3: + block + loop # label3: i32.load8_u $push9=, 0($1) tee_local $push8=, $0=, $pop9 i32.eqz $push16=, $pop8 @@ -97,7 +97,7 @@ f0: # @f0 tee_local $push14=, $4=, $pop15 i32.store __stack_pointer($pop9), $pop14 i32.store 12($4), $1 - block + block i32.call $push0=, strlen@FUNCTION, $0 i32.const $push13=, 16 i32.ne $push1=, $pop0, $pop13 @@ -106,8 +106,8 @@ f0: # @f0 i32.load $1=, 12($4) .LBB2_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label6: + block + loop # label6: i32.load8_u $push17=, 0($0) tee_local $push16=, $2=, $pop17 i32.eqz $push24=, $pop16 @@ -165,7 +165,7 @@ f1: # @f1 tee_local $push14=, $5=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($5), $2 - block + block i32.call $push0=, strlen@FUNCTION, $1 i32.const $push1=, 15 i32.ne $push2=, $pop0, $pop1 @@ -174,8 +174,8 @@ f1: # @f1 i32.load $2=, 12($5) .LBB3_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label9: + block + loop # label9: i32.load8_u $push17=, 0($1) tee_local $push16=, $3=, $pop17 i32.eqz $push24=, $pop16 @@ -233,7 +233,7 @@ f2: # @f2 tee_local $push14=, $6=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($6), $3 - block + block i32.call $push0=, strlen@FUNCTION, $2 i32.const $push1=, 14 i32.ne $push2=, $pop0, $pop1 @@ -242,8 +242,8 @@ f2: # @f2 i32.load $3=, 12($6) .LBB4_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label12: + block + loop # label12: i32.load8_u $push17=, 0($2) tee_local $push16=, $4=, $pop17 i32.eqz $push24=, $pop16 @@ -301,7 +301,7 @@ f3: # @f3 tee_local $push14=, $7=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($7), $4 - block + block i32.call $push0=, strlen@FUNCTION, $3 i32.const $push1=, 13 i32.ne $push2=, $pop0, $pop1 @@ -310,8 +310,8 @@ f3: # @f3 i32.load $4=, 12($7) .LBB5_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label15: + block + loop # label15: i32.load8_u $push17=, 0($3) tee_local $push16=, $5=, $pop17 i32.eqz $push24=, $pop16 @@ -369,7 +369,7 @@ f4: # @f4 tee_local $push14=, $8=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($8), $5 - block + block i32.call $push0=, strlen@FUNCTION, $4 i32.const $push1=, 12 i32.ne $push2=, $pop0, $pop1 @@ -378,8 +378,8 @@ f4: # @f4 i32.load $5=, 12($8) .LBB6_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label18: + block + loop # label18: i32.load8_u $push17=, 0($4) tee_local $push16=, $6=, $pop17 i32.eqz $push24=, $pop16 @@ -437,7 +437,7 @@ f5: # @f5 tee_local $push14=, $9=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($9), $6 - block + block i32.call $push0=, strlen@FUNCTION, $5 i32.const $push1=, 11 i32.ne $push2=, $pop0, $pop1 @@ -446,8 +446,8 @@ f5: # @f5 i32.load $6=, 12($9) .LBB7_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label21: + block + loop # label21: i32.load8_u $push17=, 0($5) tee_local $push16=, $7=, $pop17 i32.eqz $push24=, $pop16 @@ -505,7 +505,7 @@ f6: # @f6 tee_local $push14=, $10=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($10), $7 - block + block i32.call $push0=, strlen@FUNCTION, $6 i32.const $push1=, 10 i32.ne $push2=, $pop0, $pop1 @@ -514,8 +514,8 @@ f6: # @f6 i32.load $7=, 12($10) .LBB8_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label24: + block + loop # label24: i32.load8_u $push17=, 0($6) tee_local $push16=, $8=, $pop17 i32.eqz $push24=, $pop16 @@ -573,7 +573,7 @@ f7: # @f7 tee_local $push14=, $11=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($11), $8 - block + block i32.call $push0=, strlen@FUNCTION, $7 i32.const $push1=, 9 i32.ne $push2=, $pop0, $pop1 @@ -582,8 +582,8 @@ f7: # @f7 i32.load $8=, 12($11) .LBB9_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label27: + block + loop # label27: i32.load8_u $push17=, 0($7) tee_local $push16=, $9=, $pop17 i32.eqz $push24=, $pop16 @@ -641,7 +641,7 @@ f8: # @f8 tee_local $push14=, $12=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($12), $9 - block + block i32.call $push0=, strlen@FUNCTION, $8 i32.const $push1=, 8 i32.ne $push2=, $pop0, $pop1 @@ -650,8 +650,8 @@ f8: # @f8 i32.load $9=, 12($12) .LBB10_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label30: + block + loop # label30: i32.load8_u $push17=, 0($8) tee_local $push16=, $10=, $pop17 i32.eqz $push24=, $pop16 @@ -709,7 +709,7 @@ f9: # @f9 tee_local $push14=, $13=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($13), $10 - block + block i32.call $push0=, strlen@FUNCTION, $9 i32.const $push1=, 7 i32.ne $push2=, $pop0, $pop1 @@ -718,8 +718,8 @@ f9: # @f9 i32.load $10=, 12($13) .LBB11_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label33: + block + loop # label33: i32.load8_u $push17=, 0($9) tee_local $push16=, $11=, $pop17 i32.eqz $push24=, $pop16 @@ -777,7 +777,7 @@ f10: # @f10 tee_local $push14=, $14=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($14), $11 - block + block i32.call $push0=, strlen@FUNCTION, $10 i32.const $push1=, 6 i32.ne $push2=, $pop0, $pop1 @@ -786,8 +786,8 @@ f10: # @f10 i32.load $11=, 12($14) .LBB12_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label36: + block + loop # label36: i32.load8_u $push17=, 0($10) tee_local $push16=, $12=, $pop17 i32.eqz $push24=, $pop16 @@ -845,7 +845,7 @@ f11: # @f11 tee_local $push14=, $15=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($15), $12 - block + block i32.call $push0=, strlen@FUNCTION, $11 i32.const $push1=, 5 i32.ne $push2=, $pop0, $pop1 @@ -854,8 +854,8 @@ f11: # @f11 i32.load $12=, 12($15) .LBB13_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label39: + block + loop # label39: i32.load8_u $push17=, 0($11) tee_local $push16=, $13=, $pop17 i32.eqz $push24=, $pop16 @@ -913,7 +913,7 @@ f12: # @f12 tee_local $push14=, $16=, $pop15 i32.store __stack_pointer($pop9), $pop14 i32.store 12($16), $13 - block + block i32.call $push0=, strlen@FUNCTION, $12 i32.const $push13=, 4 i32.ne $push1=, $pop0, $pop13 @@ -922,8 +922,8 @@ f12: # @f12 i32.load $13=, 12($16) .LBB14_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label42: + block + loop # label42: i32.load8_u $push17=, 0($12) tee_local $push16=, $14=, $pop17 i32.eqz $push24=, $pop16 @@ -981,7 +981,7 @@ f13: # @f13 tee_local $push14=, $17=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($17), $14 - block + block i32.call $push0=, strlen@FUNCTION, $13 i32.const $push1=, 3 i32.ne $push2=, $pop0, $pop1 @@ -990,8 +990,8 @@ f13: # @f13 i32.load $14=, 12($17) .LBB15_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label45: + block + loop # label45: i32.load8_u $push17=, 0($13) tee_local $push16=, $15=, $pop17 i32.eqz $push24=, $pop16 @@ -1049,7 +1049,7 @@ f14: # @f14 tee_local $push14=, $18=, $pop15 i32.store __stack_pointer($pop10), $pop14 i32.store 12($18), $15 - block + block i32.call $push0=, strlen@FUNCTION, $14 i32.const $push1=, 2 i32.ne $push2=, $pop0, $pop1 @@ -1058,8 +1058,8 @@ f14: # @f14 i32.load $15=, 12($18) .LBB16_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label48: + block + loop # label48: i32.load8_u $push17=, 0($14) tee_local $push16=, $16=, $pop17 i32.eqz $push24=, $pop16 @@ -1117,7 +1117,7 @@ f15: # @f15 tee_local $push14=, $19=, $pop15 i32.store __stack_pointer($pop9), $pop14 i32.store 12($19), $16 - block + block i32.call $push0=, strlen@FUNCTION, $15 i32.const $push13=, 1 i32.ne $push1=, $pop0, $pop13 @@ -1126,8 +1126,8 @@ f15: # @f15 i32.load $16=, 12($19) .LBB17_2: # %while.cond.i # =>This Inner Loop Header: Depth=1 - block - loop # label51: + block + loop # label51: i32.load8_u $push17=, 0($15) tee_local $push16=, $17=, $pop17 i32.eqz $push24=, $pop16 @@ -1573,7 +1573,7 @@ main: # @main .size .L.str, 17 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype strlen, i32, i32 .functype exit, void, i32 diff --git a/test/torture-s/va-arg-pack-1.c.s b/test/torture-s/va-arg-pack-1.c.s index 8efa58c74..7d391c599 100644 --- a/test/torture-s/va-arg-pack-1.c.s +++ b/test/torture-s/va-arg-pack-1.c.s @@ -17,7 +17,7 @@ foo1: # @foo1 tee_local $push88=, $6=, $pop89 i32.store __stack_pointer($pop78), $pop88 i32.store 12($6), $2 - block + block i32.const $push0=, 19 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label0 @@ -51,12 +51,12 @@ foo1: # @foo1 i32.ne $push12=, $pop10, $pop11 br_if 0, $pop12 # 0: down to label0 # BB#4: # %if.end13 - block + block i32.const $push13=, 2 i32.eq $push14=, $0, $pop13 br_if 0, $pop14 # 0: down to label1 # BB#5: # %if.end13 - block + block i32.const $push15=, 1 i32.eq $push16=, $0, $pop15 br_if 0, $pop16 # 0: down to label2 @@ -125,7 +125,7 @@ foo1: # @foo1 i32.const $push67=, 32 i32.add $push68=, $2, $pop67 i32.store 12($6), $pop68 - block + block i32.load $push69=, 0($1) i32.const $push70=, 3 i32.ne $push71=, $pop69, $pop70 @@ -216,7 +216,7 @@ foo2: # @foo2 tee_local $push86=, $4=, $pop87 i32.store __stack_pointer($pop70), $pop86 i32.store 12($4), $2 - block + block i32.const $push0=, 19 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label4 @@ -241,7 +241,7 @@ foo2: # @foo2 i32.ne $push10=, $1, $pop9 br_if 0, $pop10 # 0: down to label4 # BB#3: # %if.end9 - block + block i32.const $push11=, 2 i32.eq $push12=, $0, $pop11 br_if 0, $pop12 # 0: down to label5 @@ -453,7 +453,7 @@ main: # @main i32.const $push72=, 160 i32.add $push73=, $4, $pop72 i32.store 148($4), $pop73 - block + block i32.const $push94=, 0 i32.const $push74=, 144 i32.add $push75=, $4, $pop74 @@ -676,7 +676,7 @@ cnt: .size cnt, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype memcmp, i32, i32, i32, i32 .functype bar, i32, i32 diff --git a/test/torture-s/va-arg-trap-1.c.s b/test/torture-s/va-arg-trap-1.c.s index 98b3de1d2..6668f29e4 100644 --- a/test/torture-s/va-arg-trap-1.c.s +++ b/test/torture-s/va-arg-trap-1.c.s @@ -71,5 +71,5 @@ f: .size f, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/vfprintf-1.c.s b/test/torture-s/vfprintf-1.c.s index 16aace8b1..694998a9f 100644 --- a/test/torture-s/vfprintf-1.c.s +++ b/test/torture-s/vfprintf-1.c.s @@ -17,24 +17,24 @@ inner: # @inner i32.store __stack_pointer($pop78), $pop82 i32.store 12($2), $1 i32.store 8($2), $1 - block - block - block - block + block + block + block + block i32.const $push0=, 10 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label3 # BB#1: # %entry - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block br_table $0, 0, 1, 2, 3, 4, 5, 6, 7, 11, 8, 9, 0 # 0: down to label13 # 1: down to label12 # 2: down to label11 @@ -363,6 +363,6 @@ main: # @main .size .L.str.7, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype vfprintf, i32, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/vfprintf-chk-1.c.s b/test/torture-s/vfprintf-chk-1.c.s index e3bc51051..78338cd7a 100644 --- a/test/torture-s/vfprintf-chk-1.c.s +++ b/test/torture-s/vfprintf-chk-1.c.s @@ -8,7 +8,7 @@ __vfprintf_chk: # @__vfprintf_chk .param i32, i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, should_optimize($pop3) br_if 0, $pop0 # 0: down to label0 @@ -43,23 +43,23 @@ inner: # @inner i32.store __stack_pointer($pop91), $pop95 i32.store 12($2), $1 i32.store 8($2), $1 - block + block i32.const $push0=, 10 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 # BB#1: # %entry - block - block - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block + block + block br_table $0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0 # 0: down to label13 # 1: down to label12 # 2: down to label11 @@ -560,6 +560,6 @@ should_optimize: .size .L.str.7, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype vfprintf, i32, i32, i32, i32 diff --git a/test/torture-s/vla-dealloc-1.c.s b/test/torture-s/vla-dealloc-1.c.s index 631c8689f..3437c9b2c 100644 --- a/test/torture-s/vla-dealloc-1.c.s +++ b/test/torture-s/vla-dealloc-1.c.s @@ -15,7 +15,7 @@ main: # @main i32.const $2=, 0 .LBB0_1: # %if.end # =>This Inner Loop Header: Depth=1 - loop # label0: + loop # label0: i32.const $push24=, 1000 i32.rem_s $push0=, $2, $pop24 i32.const $push23=, 2 @@ -61,4 +61,4 @@ p: .size p, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" diff --git a/test/torture-s/vprintf-1.c.s b/test/torture-s/vprintf-1.c.s index a93781006..80e3ae780 100644 --- a/test/torture-s/vprintf-1.c.s +++ b/test/torture-s/vprintf-1.c.s @@ -17,24 +17,24 @@ inner: # @inner i32.store __stack_pointer($pop67), $pop71 i32.store 12($2), $1 i32.store 8($2), $1 - block - block - block - block + block + block + block + block i32.const $push0=, 10 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label3 # BB#1: # %entry - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block br_table $0, 0, 1, 2, 3, 4, 5, 6, 7, 11, 8, 9, 0 # 0: down to label13 # 1: down to label12 # 2: down to label11 @@ -330,6 +330,6 @@ main: # @main .size .L.str.7, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype vprintf, i32, i32, i32 .functype abort, void diff --git a/test/torture-s/vprintf-chk-1.c.s b/test/torture-s/vprintf-chk-1.c.s index 7b369e095..f4e7b5c2e 100644 --- a/test/torture-s/vprintf-chk-1.c.s +++ b/test/torture-s/vprintf-chk-1.c.s @@ -8,7 +8,7 @@ __vprintf_chk: # @__vprintf_chk .param i32, i32, i32 .result i32 # BB#0: # %entry - block + block i32.const $push3=, 0 i32.load $push0=, should_optimize($pop3) br_if 0, $pop0 # 0: down to label0 @@ -43,23 +43,23 @@ inner: # @inner i32.store __stack_pointer($pop90), $pop94 i32.store 12($2), $1 i32.store 8($2), $1 - block + block i32.const $push0=, 10 i32.gt_u $push1=, $0, $pop0 br_if 0, $pop1 # 0: down to label1 # BB#1: # %entry - block - block - block - block - block - block - block - block - block - block - block - block + block + block + block + block + block + block + block + block + block + block + block + block br_table $0, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 0 # 0: down to label13 # 1: down to label12 # 2: down to label11 @@ -527,6 +527,6 @@ should_optimize: .size .L.str.7, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype vprintf, i32, i32, i32 diff --git a/test/torture-s/vrp-1.c.s b/test/torture-s/vrp-1.c.s index f628a2cad..463d1c25c 100644 --- a/test/torture-s/vrp-1.c.s +++ b/test/torture-s/vrp-1.c.s @@ -31,5 +31,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/vrp-2.c.s b/test/torture-s/vrp-2.c.s index 2b06a4ab2..db621f6ae 100644 --- a/test/torture-s/vrp-2.c.s +++ b/test/torture-s/vrp-2.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 1 - block + block i32.const $push4=, 2 i32.eq $push0=, $0, $pop4 br_if 0, $pop0 # 0: down to label0 @@ -46,5 +46,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/vrp-3.c.s b/test/torture-s/vrp-3.c.s index 781560c46..991fcd3a8 100644 --- a/test/torture-s/vrp-3.c.s +++ b/test/torture-s/vrp-3.c.s @@ -10,7 +10,7 @@ f: # @f .local i32 # BB#0: # %entry i32.const $1=, 1 - block + block i32.const $push0=, 14 i32.add $push1=, $0, $pop0 i32.const $push2=, 25 @@ -48,5 +48,5 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/vrp-4.c.s b/test/torture-s/vrp-4.c.s index d2a2fc326..0c0158449 100644 --- a/test/torture-s/vrp-4.c.s +++ b/test/torture-s/vrp-4.c.s @@ -7,7 +7,7 @@ test: # @test .param i32, i32 # BB#0: # %entry - block + block i32.const $push5=, 1 i32.eq $push0=, $0, $pop5 br_if 0, $pop0 # 0: down to label0 @@ -45,6 +45,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/vrp-5.c.s b/test/torture-s/vrp-5.c.s index fe29859a3..9c370d987 100644 --- a/test/torture-s/vrp-5.c.s +++ b/test/torture-s/vrp-5.c.s @@ -7,7 +7,7 @@ test: # @test .param i32, i32 # BB#0: # %entry - block + block i32.const $push5=, 4 i32.le_u $push0=, $0, $pop5 br_if 0, $pop0 # 0: down to label0 @@ -46,6 +46,6 @@ main: # @main .size main, .Lfunc_end1-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/vrp-6.c.s b/test/torture-s/vrp-6.c.s index 5eefeeb45..099004097 100644 --- a/test/torture-s/vrp-6.c.s +++ b/test/torture-s/vrp-6.c.s @@ -7,7 +7,7 @@ test01: # @test01 .param i32, i32 # BB#0: # %entry - block + block i32.const $push5=, 4 i32.le_u $push0=, $0, $pop5 br_if 0, $pop0 # 0: down to label0 @@ -37,8 +37,8 @@ test01: # @test01 test02: # @test02 .param i32, i32 # BB#0: # %entry - block - block + block + block i32.const $push1=, 12 i32.lt_u $push2=, $0, $pop1 br_if 0, $pop2 # 0: down to label2 @@ -78,6 +78,6 @@ main: # @main .size main, .Lfunc_end2-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/vrp-7.c.s b/test/torture-s/vrp-7.c.s index 1e15dbcf9..0409107d7 100644 --- a/test/torture-s/vrp-7.c.s +++ b/test/torture-s/vrp-7.c.s @@ -32,7 +32,7 @@ main: # @main # BB#0: # %entry i32.const $push0=, 16 call foo@FUNCTION, $pop0 - block + block i32.const $push4=, 0 i32.load8_u $push1=, t($pop4) i32.const $push2=, 1 @@ -60,5 +60,5 @@ t: .size t, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/wchar_t-1.c.s b/test/torture-s/wchar_t-1.c.s index 3c4267dc9..92091430b 100644 --- a/test/torture-s/wchar_t-1.c.s +++ b/test/torture-s/wchar_t-1.c.s @@ -7,7 +7,7 @@ main: # @main .result i32 # BB#0: # %entry - block + block i32.const $push7=, 0 i32.load $push1=, x($pop7) i32.const $push2=, 196 @@ -55,6 +55,6 @@ y: .size y, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void .functype exit, void, i32 diff --git a/test/torture-s/widechar-1.c.s b/test/torture-s/widechar-1.c.s index 243438946..f64709644 100644 --- a/test/torture-s/widechar-1.c.s +++ b/test/torture-s/widechar-1.c.s @@ -15,5 +15,5 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/zero-struct-1.c.s b/test/torture-s/zero-struct-1.c.s index ba5e94060..fda18eca1 100644 --- a/test/torture-s/zero-struct-1.c.s +++ b/test/torture-s/zero-struct-1.c.s @@ -45,7 +45,7 @@ main: # @main i32.add $push9=, $pop3, $pop10 tee_local $push8=, $0=, $pop9 i32.store ff($pop12), $pop8 - block + block i32.const $push7=, y+2 i32.ne $push4=, $1, $pop7 br_if 0, $pop4 # 0: down to label0 @@ -91,5 +91,5 @@ ff: .size ff, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/zero-struct-2.c.s b/test/torture-s/zero-struct-2.c.s index 5d8f869cc..4df2d48b7 100644 --- a/test/torture-s/zero-struct-2.c.s +++ b/test/torture-s/zero-struct-2.c.s @@ -32,7 +32,7 @@ main: # @main i32.const $push0=, 1 i32.add $push1=, $pop2, $pop0 i32.store ii($pop5), $pop1 - block + block br_if 0, $0 # 0: down to label0 # BB#1: # %if.end i32.const $push6=, 0 @@ -55,5 +55,5 @@ ii: .size ii, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype abort, void diff --git a/test/torture-s/zerolen-1.c.s b/test/torture-s/zerolen-1.c.s index 263ef0732..ae014030f 100644 --- a/test/torture-s/zerolen-1.c.s +++ b/test/torture-s/zerolen-1.c.s @@ -40,5 +40,5 @@ entry: .size entry, 4 - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" .functype exit, void, i32 diff --git a/test/torture-s/zerolen-2.c.s b/test/torture-s/zerolen-2.c.s index 451471be1..f92dc9095 100644 --- a/test/torture-s/zerolen-2.c.s +++ b/test/torture-s/zerolen-2.c.s @@ -14,4 +14,4 @@ main: # @main .size main, .Lfunc_end0-main - .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283502)" + .ident "clang version 4.0.0 (trunk 283460) (llvm/trunk 283507)" |