17 lines · plain
1; RUN: llc -verify-machineinstrs -ppc-asm-full-reg-names < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s2 3define i32 @test(i32 %x) nounwind {4; CHECK-LABEL: @test5; CHECK: cmpwi r3, -16 7 %c = icmp eq i32 %x, -18 br i1 %c, label %T, label %F9T:10 %A = call i32 @test(i32 123)11 %B = add i32 %A, 4312 ret i32 %B13F:14 %G = add i32 %x, 123415 ret i32 %G16}17