mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-05 13:26:55 +00:00
For PR1297:
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
This commit is contained in:
@@ -2,12 +2,10 @@
|
||||
|
||||
define i32 @_ZNK4llvm5APInt17countLeadingZerosEv(i64 *%t) {
|
||||
%tmp19 = load i64* %t
|
||||
%tmp23 = tail call i64 @llvm.ctlz.i64( i64 %tmp19 ) ; <i64> [#uses=1]
|
||||
%tmp2324 = trunc i64 %tmp23 to i32 ; <i32> [#uses=1]
|
||||
%tmp89 = add i32 %tmp2324, -64 ; <i32> [#uses=1]
|
||||
%tmp90 = add i32 %tmp89, 0 ; <i32> [#uses=1]
|
||||
%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 i64 @llvm.ctlz.i64(i64)
|
||||
|
||||
declare i32 @llvm.ctlz.i64(i64)
|
||||
|
Reference in New Issue
Block a user