2009-09-09 02:09:15 +02:00
|
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin | grep ldmia
|
|
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin | grep stmia
|
|
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin | grep ldrb
|
|
|
|
; RUN: llc < %s -mtriple=arm-apple-darwin | grep ldrh
|
2007-10-23 00:11:27 +02:00
|
|
|
|
|
|
|
%struct.x = type { i8, i8, i8, i8, i8, i8, i8, i8, i8, i8, i8 }
|
|
|
|
@src = external global %struct.x
|
|
|
|
@dst = external global %struct.x
|
|
|
|
|
|
|
|
define i32 @t() {
|
|
|
|
entry:
|
|
|
|
call void @llvm.memcpy.i32( i8* getelementptr (%struct.x* @dst, i32 0, i32 0), i8* getelementptr (%struct.x* @src, i32 0, i32 0), i32 11, i32 8 )
|
|
|
|
ret i32 0
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @llvm.memcpy.i32(i8*, i8*, i32, i32)
|