2 ## Test code sequences of synthesized _savegpr1_{14..31}
4 # RUN: llvm-mc -filetype=obj -triple=ppc64le %s -o %t14.o
5 # RUN: ld.lld %t14.o -o %t14
6 # RUN: llvm-objdump -d %t14 | FileCheck --check-prefix=R14 %s
8 # R14-LABEL: <_savegpr1_14>:
9 # R14-NEXT: std 14, -144(12)
10 # R14-NEXT: std 15, -136(12)
12 # R14-NEXT: <_savegpr1_16>:
13 # R14-NEXT: std 16, -128(12)
17 ## Don't synthesize _savegpr1_{14..30} because they are unused.
18 # RUN: echo 'bl _savegpr1_31' | llvm-mc -filetype=obj -triple=ppc64 - -o %t31.o
19 # RUN: ld.lld %t31.o -o %t31
20 # RUN: llvm-objdump -d %t31 | FileCheck --check-prefix=R31 %s
22 # R31-LABEL: Disassembly of section .text:
24 # R31-NEXT: <_savegpr1_31>:
25 # R31-NEXT: std 31, -8(12)
28 # RUN: echo 'bl _savegpr1_32' | llvm-mc -filetype=obj -triple=ppc64le - -o %t32.o
29 # RUN: not ld.lld %t32.o -o /dev/null