1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-24 21:42:54 +02:00
llvm-mirror/test/CodeGen/Mips/unalignedload.ll
Akira Hatanaka c9c0190cbe Define unaligned load and store.
llvm-svn: 137515
2011-08-12 21:30:06 +00:00

17 lines
402 B
LLVM

; RUN: llc -march=mips < %s | FileCheck %s
%struct.S2 = type { %struct.S1, %struct.S1 }
%struct.S1 = type { i8, i8 }
@s2 = common global %struct.S2 zeroinitializer, align 1
define void @foo1() nounwind {
entry:
; CHECK: ulw ${{[0-9]+}}, 2
tail call void @foo2(%struct.S1* byval getelementptr inbounds (%struct.S2* @s2, i32 0, i32 1)) nounwind
ret void
}
declare void @foo2(%struct.S1* byval)