1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00
llvm-mirror/test/CodeGen/PowerPC/2006-07-19-stwbrx-crash.ll

12 lines
333 B
LLVM
Raw Normal View History

2008-03-25 05:26:08 +01:00
; RUN: llvm-as < %s | llc -march=ppc32
2006-07-19 19:14:23 +02:00
2008-03-25 05:26:08 +01:00
define void @img2buf(i32 %symbol_size_in_bytes, i16* %ui16) {
%tmp93 = load i16* null ; <i16> [#uses=1]
%tmp99 = call i16 @llvm.bswap.i16( i16 %tmp93 ) ; <i16> [#uses=1]
store i16 %tmp99, i16* %ui16
ret void
2006-07-19 19:14:23 +02:00
}
2008-03-25 05:26:08 +01:00
declare i16 @llvm.bswap.i16(i16)