[Instrumentation] Fix a warning
[llvm-project.git] / llvm / test / CodeGen / PowerPC / no-dup-spill-fp.ll
blob1d9018ccac2f5f8b853e75d88127111ec0bc4495
1 ; RUN: llc < %s | FileCheck %s
2 target datalayout = "E-m:e-i64:64-n32:64"
3 target triple = "powerpc64"
5 ; Function Attrs: nounwind
6 define void @test() #0 {
7 entry:
8   call void @func()
9   call void asm sideeffect "nop", "~{r31}"() #1, !srcloc !0
10   ret void
12 ; CHECK-LABEL: @test
13 ; CHECK: std 31, -8(1)
14 ; CHECK: stdu 1, -{{[0-9]+}}(1)
15 ; CHECK-NOT: std 31,
16 ; CHECK: bl func
17 ; CHECK: ld 31, -8(1)
18 ; CHECK: blr
21 declare void @func()
23 attributes #0 = { nounwind "frame-pointer"="all" "target-cpu"="ppc64" }
24 attributes #1 = { nounwind }
26 !0 = !{i32 57}