mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
5403a31116
This change merges llvm-elfabi and llvm-ifs tools. Differential Revision: https://reviews.llvm.org/D100139
18 lines
534 B
Plaintext
18 lines
534 B
Plaintext
## Test reading TBE file with bad bit width.
|
|
|
|
# RUN: not llvm-ifs --output-format=IFS --output=- %s 2>&1 | FileCheck %s
|
|
|
|
--- !ifs-v1
|
|
SoName: somelib.so
|
|
IfsVersion: 3.0
|
|
Target: { ObjectFormat: ELF, Arch: x86_64, Endianness: little, BitWidth: 65 }
|
|
Symbols:
|
|
- { Name: foo, Type: Func }
|
|
- { Name: bar, Type: Object, Size: 42 }
|
|
- { Name: baz, Type: Object, Size: 8 }
|
|
- { Name: not, Type: Object, Size: 128, Undefined: true }
|
|
- { Name: nor, Type: Func, Undefined: true }
|
|
...
|
|
|
|
# CHECK: YAML:8:74: error: Unsupported bit width
|