mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
ad449c14dd
r182680 replaced CountLeadingZeros_32 with a template function countLeadingZeros that relies on using the correct argument type to give the right result. The type passed in the XCore backend after this revision was incorrect in a couple of places. Patch by Robert Lytton. llvm-svn: 185430
11 lines
162 B
LLVM
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
|
|
}
|