llvm-for-llvmta/test/CodeGen/XCore/zext.ll
Nils Hölscher 3500bf8dde first commit
2022-04-25 10:02:23 +02:00

11 lines
162 B
LLVM

; RUN: llc -march=xcore < %s | FileCheck %s
define i32 @f(i1 %a) {
entry:
; CHECK: f
; CHECK: zext r0, 1
; CHECK: retsp 0
%b= zext i1 %a to i32
ret i32 %b
}