1; RUN: llc < %s -mtriple=i686-linux -show-mc-encoding | FileCheck %s
2
3declare void @foo()
4declare void @bar()
5
6define void @f(i32 %x, i32 %y) optsize {
7entry:
8	%p = icmp eq i32 %x, %y
9  br i1 %p, label %bb1, label %bb2
10bb1:
11  tail call void @foo()
12  ret void
13bb2:
14  tail call void @bar()
15  ret void
16}
17
18; CHECK-LABEL: f:
19; CHECK: cmp
20; CHECK: jne bar
21; Check that the asm doesn't just look good, but uses the correct encoding.
22; CHECK: encoding: [0x75,A]
23
24; CHECK: jmp foo
25