mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
27 lines
544 B
LLVM
27 lines
544 B
LLVM
; RUN: llc < %s | FileCheck %s
|
|
target datalayout = "E-m:e-i64:64-n32:64"
|
|
target triple = "powerpc64"
|
|
|
|
; Function Attrs: nounwind
|
|
define void @test() #0 {
|
|
entry:
|
|
call void @func()
|
|
call void asm sideeffect "nop", "~{r31}"() #1, !srcloc !0
|
|
ret void
|
|
|
|
; CHECK-LABEL: @test
|
|
; CHECK: std 31, -8(1)
|
|
; CHECK: stdu 1, -{{[0-9]+}}(1)
|
|
; CHECK-NOT: std 31,
|
|
; CHECK: bl func
|
|
; CHECK: ld 31, -8(1)
|
|
; CHECK: blr
|
|
}
|
|
|
|
declare void @func()
|
|
|
|
attributes #0 = { nounwind "frame-pointer"="all" "target-cpu"="ppc64" }
|
|
attributes #1 = { nounwind }
|
|
|
|
!0 = !{i32 57}
|