mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
a3c533a716
Update these test cases to use proper signatures for bswap which is now and overloaded intrinsic. Its name must be of the form llvm.bswap.i32.i32 since both the parameter and the result or of type "iAny". Also, the bit counting intrinsics changed to always return i32. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35548 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
429 B
LLVM
12 lines
429 B
LLVM
; RUN: llvm-as < %s | llc -march=ppc64 -mcpu=g5 | grep cntlzd
|
|
|
|
define i32 @_ZNK4llvm5APInt17countLeadingZerosEv(i64 *%t) {
|
|
%tmp19 = load i64* %t
|
|
%tmp23 = tail call i32 @llvm.ctlz.i64( i64 %tmp19 ) ; <i64> [#uses=1]
|
|
%tmp89 = add i32 %tmp23, -64 ; <i32> [#uses=1]
|
|
%tmp90 = add i32 %tmp89, 0 ; <i32> [#uses=1]
|
|
ret i32 %tmp90
|
|
}
|
|
|
|
declare i32 @llvm.ctlz.i64(i64)
|