mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +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
20 lines
337 B
LLVM
20 lines
337 B
LLVM
; RUN: llc < %s -march=xcore -mcpu=xs1b-generic | FileCheck %s
|
|
|
|
; CHECK: .section .cp.rodata.cst4,"aMc",@progbits,4
|
|
; CHECK: .LCPI0_0:
|
|
; CHECK: .long 12345678
|
|
; CHECK: f:
|
|
; CHECK: ldw r0, cp[.LCPI0_0]
|
|
define i32 @f() {
|
|
entry:
|
|
ret i32 12345678
|
|
}
|
|
|
|
define i32 @g() {
|
|
entry:
|
|
; CHECK: g:
|
|
; CHECK: mkmsk r0, 1
|
|
; CHECK: retsp 0
|
|
ret i32 1;
|
|
}
|