llvm-project/llvm/test/CodeGen/PowerPC/ispositive.ll

13 lines
348 B
LLVM
Raw Normal View History

; RUN: llc -verify-machineinstrs -ppc-asm-full-reg-names < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
2007-04-11 13:32:13 +08:00
; CHECK-LABEL: test1
; CHECK: srwi r3, r3, 31
; CHECK: blr
2007-04-11 23:24:04 +08:00
define i32 @test1(i32 %X) {
2007-04-11 13:32:13 +08:00
entry:
icmp slt i32 %X, 0 ; <i1>:0 [#uses=1]
zext i1 %0 to i32 ; <i32>:1 [#uses=1]
ret i32 %1
}