You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
691 B
20 lines
691 B
# RUN: not llvm-ifs -action write-ifs -o - %s %S/Inputs/strong-mismatch-size.ifs 2>&1 | FileCheck %s --check-prefixes=CHECK-SIZE
|
|
# RUN: not llvm-ifs -action write-ifs -o - %s %S/Inputs/strong-mismatch-type.ifs 2>&1 | FileCheck %s --check-prefixes=CHECK-TYPE
|
|
|
|
# CHECK-SIZE: error: Interface Stub: Size Mismatch for foobar.
|
|
# CHECK-SIZE-NEXT: Filename:
|
|
# CHECK-SIZE-NEXT: Size Values: 1 2
|
|
|
|
|
|
# CHECK-TYPE: error: Interface Stub: Type Mismatch for foobar.
|
|
# CHECK-TYPE-NEXT: Filename:
|
|
# CHECK-TYPE-NEXT: Type Values: Object Func
|
|
|
|
--- !experimental-ifs-v2
|
|
IfsVersion: 2.0
|
|
Triple: x86_64-unknown-linux-gnu
|
|
ObjectFileFormat: ELF
|
|
Symbols:
|
|
- { Name: foobar, Type: Object, Size: 1, Weak: true }
|
|
...
|