mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
13e45b76fd
Modeled Triple::GNU after front end code (aapcs abi) and updated tests that expect apcs abi. Based heavily on a patch by Ana Pazos! llvm-svn: 306768
15 lines
368 B
LLVM
15 lines
368 B
LLVM
; RUN: llc < %s -mtriple=armv6-linux-gnu -target-abi=apcs | FileCheck %s
|
|
|
|
@b = external global i64*
|
|
|
|
define i64 @t(i64 %a) nounwind readonly {
|
|
entry:
|
|
; CHECK: push {r4, r5, lr}
|
|
; CHECK: pop {r4, r5, pc}
|
|
call void asm sideeffect "", "~{r4},~{r5}"() nounwind
|
|
%0 = load i64*, i64** @b, align 4
|
|
%1 = load i64, i64* %0, align 4
|
|
%2 = mul i64 %1, %a
|
|
ret i64 %2
|
|
}
|