brintos

brintos / llvm-project-archived public Read only

0
0
Text · 605 B · f69150a Raw
18 lines · plain
1; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | not grep mfcr2 3define void @foo(i32 %X, i32 %Y, i32 %Z) {4entry:5        %tmp = icmp eq i32 %X, 0                ; <i1> [#uses=1]6        %tmp3 = icmp slt i32 %Y, 5              ; <i1> [#uses=1]7        %tmp4 = and i1 %tmp3, %tmp              ; <i1> [#uses=1]8        br i1 %tmp4, label %cond_true, label %UnifiedReturnBlock9cond_true:              ; preds = %entry10        %tmp5 = tail call i32 (...) @bar( )            ; <i32> [#uses=0]11        ret void12UnifiedReturnBlock:             ; preds = %entry13        ret void14}15 16declare i32 @bar(...)17 18