summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/bswap-load-store.ll
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-01 07:36:28 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-01 07:36:28 +0000
commita3c533a716d95877ad2daf2326b5375a8fe844d3 (patch)
tree155d910d2ab7363559a5cc9d7218505bf002c961 /test/CodeGen/PowerPC/bswap-load-store.ll
parente9391fd9b52e93717b365bdd05c471101323a4df (diff)
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
Diffstat (limited to 'test/CodeGen/PowerPC/bswap-load-store.ll')
-rw-r--r--test/CodeGen/PowerPC/bswap-load-store.ll12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/PowerPC/bswap-load-store.ll b/test/CodeGen/PowerPC/bswap-load-store.ll
index 853abc42558..664a2aa4bc9 100644
--- a/test/CodeGen/PowerPC/bswap-load-store.ll
+++ b/test/CodeGen/PowerPC/bswap-load-store.ll
@@ -8,7 +8,7 @@
void %STWBRX(uint %i, sbyte* %ptr, int %off) {
%tmp1 = getelementptr sbyte* %ptr, int %off
%tmp1 = cast sbyte* %tmp1 to uint*
- %tmp13 = tail call uint %llvm.bswap.i32(uint %i)
+ %tmp13 = tail call uint %llvm.bswap.i32.i32(uint %i)
store uint %tmp13, uint* %tmp1
ret void
}
@@ -17,14 +17,14 @@ uint %LWBRX(sbyte* %ptr, int %off) {
%tmp1 = getelementptr sbyte* %ptr, int %off
%tmp1 = cast sbyte* %tmp1 to uint*
%tmp = load uint* %tmp1
- %tmp14 = tail call uint %llvm.bswap.i32( uint %tmp )
+ %tmp14 = tail call uint %llvm.bswap.i32.i32( uint %tmp )
ret uint %tmp14
}
void %STHBRX(ushort %s, sbyte* %ptr, int %off) {
%tmp1 = getelementptr sbyte* %ptr, int %off
%tmp1 = cast sbyte* %tmp1 to ushort*
- %tmp5 = call ushort %llvm.bswap.i16( ushort %s )
+ %tmp5 = call ushort %llvm.bswap.i16.i16( ushort %s )
store ushort %tmp5, ushort* %tmp1
ret void
}
@@ -33,10 +33,10 @@ ushort %LHBRX(sbyte* %ptr, int %off) {
%tmp1 = getelementptr sbyte* %ptr, int %off
%tmp1 = cast sbyte* %tmp1 to ushort*
%tmp = load ushort* %tmp1
- %tmp6 = call ushort %llvm.bswap.i16(ushort %tmp)
+ %tmp6 = call ushort %llvm.bswap.i16.i16(ushort %tmp)
ret ushort %tmp6
}
-declare uint %llvm.bswap.i32(uint)
+declare uint %llvm.bswap.i32.i32(uint)
-declare ushort %llvm.bswap.i16(ushort)
+declare ushort %llvm.bswap.i16.i16(ushort)