[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / tools / llvm-ifs / strip-size.test
blob2a89a20b7eea7c1b6270e3969da6aaf850e457cf
1 # RUN: llvm-ifs %s --output-ifs - --strip-size | FileCheck %s
3 # CHECK:      Symbols:
4 # CHECK-NEXT:   - { Name: sym, Type: Object }
5 # CHECK-NEXT: ...
7 ## Check that the size when emitting to elf defaults to 1.
8 # RUN: llvm-ifs %s --output-elf - --strip-size | llvm-ifs - --output-ifs - | \
9 # RUN:   FileCheck %s --check-prefix=ELF
11 # ELF:      Symbols:
12 # ELF-NEXT:   - { Name: sym, Type: Object, Size: 0 }
13 # ELF-NEXT: ...
15 --- !ifs-v1
16 IfsVersion: 3.0
17 Target: x86_64
18 Symbols:
19   - { Name: sym, Type: Object, Size: 2 }
20 ...