brintos

brintos / llvm-project-archived public Read only

0
0
Text · 361 B · 87a1d7f Raw
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