[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / tools / llvm-nm / AArch64 / special-syms.test
blobafc706bf8fb289d144b67151da2240a399db5f24
1 # RUN: yaml2obj %s > %t
2 # Test --special-syms flag. Currently this flag is a no-op, so outputs with and without
3 # this flag should be identical. GNU nm doesn't show ARM and AArch64 special symbols
4 # without --special-syms, so this test is to be changed when/if we decide to implement
5 # GNU nm-like behavior in llvm-nm
7 # RUN: llvm-nm %t | FileCheck %s
8 # RUN: llvm-nm %t --special-syms | FileCheck %s
10 !ELF
11 FileHeader:
12   Class:           ELFCLASS64
13   Data:            ELFDATA2LSB
14   Type:            ET_REL
15   Machine:         EM_AARCH64
16 Sections:
17   - Name:            .text
18     Type:            SHT_PROGBITS
19     Flags:           [ SHF_ALLOC, SHF_EXECINSTR ]
20     Address:         0x1000
21   - Name:            .data
22     Type:            SHT_PROGBITS
23     Flags:           [ SHF_ALLOC, SHF_WRITE ]
24     Address:         0x2000
25 Symbols:
26   - Name:     $x.1
27     Section:  .text
28   - Name:     $d.1
29     Section:  .data
31 # CHECK:      2000 d $d.1
32 # CHECK-NEXT: 1000 t $x.1