1*f4a2713aSLionel Sambuc; RUN: llc -mtriple=mipsel-linux-gnu -march=mipsel -mcpu=mips16 -soft-float -mips16-hard-float -relocation-model=pic -mips16-constant-islands   < %s | FileCheck %s -check-prefix=cond-b-short
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel Sambuc@i = global i32 0, align 4
4*f4a2713aSLionel Sambuc@j = common global i32 0, align 4
5*f4a2713aSLionel Sambuc
6*f4a2713aSLionel Sambuc; Function Attrs: nounwind optsize
7*f4a2713aSLionel Sambucdefine i32 @main() #0 {
8*f4a2713aSLionel Sambucentry:
9*f4a2713aSLionel Sambuc  %0 = load i32* @i, align 4
10*f4a2713aSLionel Sambuc  %cmp = icmp eq i32 %0, 0
11*f4a2713aSLionel Sambuc  %. = select i1 %cmp, i32 10, i32 55
12*f4a2713aSLionel Sambuc  store i32 %., i32* @j, align 4
13*f4a2713aSLionel Sambuc; cond-b-short: 	beqz	${{[0-9]+}}, $BB{{[0-9]+}}_{{[0-9]+}}  # 16 bit inst
14*f4a2713aSLionel Sambuc  ret i32 0
15*f4a2713aSLionel Sambuc}
16*f4a2713aSLionel Sambuc
17*f4a2713aSLionel Sambucattributes #0 = { nounwind optsize "less-precise-fpmad"="false" "no-frame-pointer-elim"="false" "no-infs-fp-math"="false" "no-nans-fp-math"="false" "stack-protector-buffer-size"="8" "unsafe-fp-math"="false" "use-soft-float"="true" }
18*f4a2713aSLionel Sambuc
19*f4a2713aSLionel Sambuc
20*f4a2713aSLionel Sambuc
21