diff options
-rw-r--r-- | test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll b/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll new file mode 100644 index 0000000000..6f2fbcb08a --- /dev/null +++ b/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll @@ -0,0 +1,10 @@ +; RUN: llvm-as < %s | llc -march=ppc32 + +void %img2buf(int %symbol_size_in_bytes, ushort* %ui16) { + %tmp93 = load ushort* null ; <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(ushort) |