aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/2006-01-18-InvalidBranchOpcodeAssert.ll
blob: 5f5aed43e3709028f1de77ff90cd3041f5a2e10c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; RUN: llvm-as < %s | llc
; This crashed the PPC backend.

void %test() {
	%tmp125 = call bool %llvm.isunordered.f64( double 0.000000e+00, double 0.000000e+00 )		; <bool> [#uses=1]
	br bool %tmp125, label %bb154, label %cond_false133

cond_false133:		; preds = %entry
	ret void

bb154:		; preds = %entry
	%tmp164 = seteq uint 0, 0		; <bool> [#uses=0]
	ret void
}

declare bool %llvm.isunordered.f64(double, double)