18 lines
392 B
Plaintext
18 lines
392 B
Plaintext
# Check that llvm-lib can list the members of an archive which contains the
|
|
# special member /<ECSYMBOLS>/.
|
|
|
|
# RUN: yaml2obj %s -o %t.lib
|
|
# RUN: llvm-lib /list %t.lib | FileCheck %s
|
|
|
|
# CHECK: /<ECSYMBOLS>/
|
|
|
|
--- !Arch
|
|
Members:
|
|
- Name: '/'
|
|
Size: '0'
|
|
- Name: '/'
|
|
Size: '0'
|
|
- Name: '/<ECSYMBOLS>/'
|
|
Size: '0'
|
|
...
|