brintos

brintos / llvm-project-archived public Read only

0
0
Text · 532 B · 2a3e00f Raw
17 lines · plain
1; RUN: llc -verify-machineinstrs < %s -mtriple=ppc32-- | not grep IMPLICIT_DEF2 3define void @foo(i64 %X) {4entry:5        %tmp1 = and i64 %X, 3           ; <i64> [#uses=1]6        %tmp = icmp sgt i64 %tmp1, 2            ; <i1> [#uses=1]7        br i1 %tmp, label %UnifiedReturnBlock, label %cond_true8cond_true:              ; preds = %entry9        %tmp.upgrd.1 = tail call i32 (...) @bar( )             ; <i32> [#uses=0]10        ret void11UnifiedReturnBlock:             ; preds = %entry12        ret void13}14 15declare i32 @bar(...)16 17