diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-04-02 01:08:02 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-04-02 01:08:02 +0000 |
commit | 0b544372d4686f2a54ba3be48d6e3f40f1cdf12a (patch) | |
tree | cb6f44bd8ec22ad3a52a8f93f1bda58cc1e57ba3 /llvm/test/CodeGen | |
parent | fad9bd6b92ba9abd71d4112cb5161780cd5d7ce8 (diff) | |
download | bcm5719-llvm-0b544372d4686f2a54ba3be48d6e3f40f1cdf12a.tar.gz bcm5719-llvm-0b544372d4686f2a54ba3be48d6e3f40f1cdf12a.zip |
Let llvm-upgrade upgrade bswap intrinsic.
llvm-svn: 35568
Diffstat (limited to 'llvm/test/CodeGen')
-rw-r--r-- | llvm/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll | 4 | ||||
-rw-r--r-- | llvm/test/CodeGen/PowerPC/bswap-load-store.ll | 12 |
2 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll b/llvm/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll index 1da6dbf1117..d71ba5a3822 100644 --- a/llvm/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll +++ b/llvm/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll @@ -2,9 +2,9 @@ void %img2buf(int %symbol_size_in_bytes, ushort* %ui16) { %tmp93 = load ushort* null ; <ushort> [#uses=1] - %tmp99 = call ushort %llvm.bswap.i16.i16( ushort %tmp93 ) ; <ushort> [#uses=1] + %tmp99 = call ushort %llvm.bswap.i16( ushort %tmp93 ) ; <ushort> [#uses=1] store ushort %tmp99, ushort* %ui16 ret void } -declare ushort %llvm.bswap.i16.i16(ushort) +declare ushort %llvm.bswap.i16(ushort) diff --git a/llvm/test/CodeGen/PowerPC/bswap-load-store.ll b/llvm/test/CodeGen/PowerPC/bswap-load-store.ll index 664a2aa4bc9..853abc42558 100644 --- a/llvm/test/CodeGen/PowerPC/bswap-load-store.ll +++ b/llvm/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.i32(uint %i) + %tmp13 = tail call uint %llvm.bswap.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.i32( uint %tmp ) + %tmp14 = tail call uint %llvm.bswap.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.i16( ushort %s ) + %tmp5 = call ushort %llvm.bswap.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.i16(ushort %tmp) + %tmp6 = call ushort %llvm.bswap.i16(ushort %tmp) ret ushort %tmp6 } -declare uint %llvm.bswap.i32.i32(uint) +declare uint %llvm.bswap.i32(uint) -declare ushort %llvm.bswap.i16.i16(ushort) +declare ushort %llvm.bswap.i16(ushort) |