xref: /llvm-project/llvm/test/CodeGen/PowerPC/compare-simm.ll (revision 7c80f98b69a6a9ad027a3f4bfda073958141d977)
1; RUN: llc -verify-machineinstrs -ppc-asm-full-reg-names < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
2
3define i32 @test(i32 %x) nounwind {
4; CHECK-LABEL: @test
5; CHECK: cmpwi r3, -1
6
7        %c = icmp eq i32 %x, -1
8	br i1 %c, label %T, label %F
9T:
10	%A = call i32 @test(i32 123)
11	%B = add i32 %A, 43
12	ret i32 %B
13F:
14	%G = add i32 %x, 1234
15	ret i32 %G
16}
17