2009-09-09 08:09:15 +08:00
|
|
|
; RUN: llc < %s -march=arm | FileCheck %s -check-prefix=GENERIC
|
|
|
|
; RUN: llc < %s -mtriple=armv6-apple-darwin | FileCheck %s -check-prefix=DARWIN_V6
|
2010-01-30 22:08:12 +08:00
|
|
|
; RUN: llc < %s -mtriple=armv6-linux | FileCheck %s -check-prefix=GENERIC
|
2007-08-02 03:34:21 +08:00
|
|
|
|
2009-08-16 05:21:19 +08:00
|
|
|
; rdar://7113725
|
2007-08-02 03:34:21 +08:00
|
|
|
|
2009-08-16 05:21:19 +08:00
|
|
|
define arm_apcscc void @t(i8* nocapture %a, i8* nocapture %b) nounwind {
|
2009-08-16 05:14:01 +08:00
|
|
|
entry:
|
2009-08-16 05:21:19 +08:00
|
|
|
; GENERIC: t:
|
|
|
|
; GENERIC: ldrb r2
|
|
|
|
; GENERIC: ldrb r3
|
|
|
|
; GENERIC: ldrb r12
|
|
|
|
; GENERIC: ldrb r1
|
|
|
|
; GENERIC: strb r1
|
|
|
|
; GENERIC: strb r12
|
|
|
|
; GENERIC: strb r3
|
|
|
|
; GENERIC: strb r2
|
|
|
|
|
|
|
|
; DARWIN_V6: t:
|
|
|
|
; DARWIN_V6: ldr r1
|
|
|
|
; DARWIN_V6: str r1
|
|
|
|
|
|
|
|
%__src1.i = bitcast i8* %b to i32* ; <i32*> [#uses=1]
|
|
|
|
%__dest2.i = bitcast i8* %a to i32* ; <i32*> [#uses=1]
|
|
|
|
%tmp.i = load i32* %__src1.i, align 1 ; <i32> [#uses=1]
|
|
|
|
store i32 %tmp.i, i32* %__dest2.i, align 1
|
|
|
|
ret void
|
2007-08-02 03:34:21 +08:00
|
|
|
}
|