Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(381)

Side by Side Diff: tests_lit/llvm2ice_tests/branch-simple.ll

Issue 686913005: Turn off dump/emit routines when building minimal subzero. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 ; 1. Trivial smoke test of compare and branch, with multiple basic 1 ; 1. Trivial smoke test of compare and branch, with multiple basic
2 ; blocks. 2 ; blocks.
3 ; 2. For a conditional branch on a constant boolean value, make sure 3 ; 2. For a conditional branch on a constant boolean value, make sure
4 ; we don't lower to a cmp instructions with an immediate as the first 4 ; we don't lower to a cmp instructions with an immediate as the first
5 ; source operand. 5 ; source operand.
6 6
7 ; REQUIRES: allow_dump
8
7 ; RUN: %p2i -i %s --args -O2 --verbose inst | FileCheck %s 9 ; RUN: %p2i -i %s --args -O2 --verbose inst | FileCheck %s
8 ; RUN: %p2i -i %s --args -Om1 --verbose inst | FileCheck %s 10 ; RUN: %p2i -i %s --args -Om1 --verbose inst | FileCheck %s
9 11
10 define i32 @simple_cond_branch(i32 %foo, i32 %bar) { 12 define i32 @simple_cond_branch(i32 %foo, i32 %bar) {
11 entry: 13 entry:
12 %r1 = icmp eq i32 %foo, %bar 14 %r1 = icmp eq i32 %foo, %bar
13 br i1 %r1, label %Equal, label %Unequal 15 br i1 %r1, label %Equal, label %Unequal
14 Equal: 16 Equal:
15 ret i32 %foo 17 ret i32 %foo
16 Unequal: 18 Unequal:
17 ret i32 %bar 19 ret i32 %bar
18 ; CHECK-LABEL: simple_cond_branch 20 ; CHECK-LABEL: simple_cond_branch
19 ; CHECK: br i1 %r1, label %Equal, label %Unequal 21 ; CHECK: br i1 %r1, label %Equal, label %Unequal
20 ; CHECK: Equal: 22 ; CHECK: Equal:
21 ; CHECK: ret i32 %foo 23 ; CHECK: ret i32 %foo
22 ; CHECK: Unequal: 24 ; CHECK: Unequal:
23 ; CHECK: ret i32 %bar 25 ; CHECK: ret i32 %bar
24 } 26 }
25 27
26 define internal i32 @test_br_const() { 28 define internal i32 @test_br_const() {
27 __0: 29 __0:
28 br i1 true, label %__1, label %__2 30 br i1 true, label %__1, label %__2
29 __1: 31 __1:
30 ret i32 21 32 ret i32 21
31 __2: 33 __2:
32 ret i32 43 34 ret i32 43
33 } 35 }
34 ; CHECK-LABEL: test_br_const 36 ; CHECK-LABEL: test_br_const
35 ; CHECK-NOT: cmp {{[0-9]*}}, 37 ; CHECK-NOT: cmp {{[0-9]*}},
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698