mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
b6d5f36f3d
The test is really checking the prolog/epilog load/store multiple formation. llvm-svn: 158328
15 lines
340 B
LLVM
15 lines
340 B
LLVM
; RUN: llc < %s -mtriple=armv6-linux-gnu | 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** @b, align 4
|
|
%1 = load i64* %0, align 4
|
|
%2 = mul i64 %1, %a
|
|
ret i64 %2
|
|
}
|