[MIParser] Set RegClassOrRegBank during instruction parsing
[llvm-complete.git] / test / CodeGen / PowerPC / no-dup-spill-fp.ll
blob95e069b54551020870e92db5b3b0318747edf4e7
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 "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" "target-cpu"="ppc64" }
24 attributes #1 = { nounwind }
26 !0 = !{i32 57}