mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
5920f219f2
There are some test that are splitted into main part + input yaml for no visible reason. This patch inines the yaml part for the 3 test cases I found. Differential revision: https://reviews.llvm.org/D63644 llvm-svn: 364049
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
# RUN: yaml2obj %s | llvm-readobj --symbols - | FileCheck %s
|
|
|
|
# CHECK: Symbols [
|
|
# CHECK: Symbol {
|
|
# CHECK: Name: .file
|
|
# CHECK: Value: 0
|
|
# CHECK: Section: IMAGE_SYM_DEBUG (-2)
|
|
# CHECK: BaseType: Null (0x0)
|
|
# CHECK: ComplexType: Null (0x0)
|
|
# CHECK: StorageClass: File (0x67)
|
|
# CHECK: AuxSymbolCount: 3
|
|
# CHECK: AuxFileRecord {
|
|
# CHECK: FileName: first-section-has-eighteen-characters.asm
|
|
# CHECK: }
|
|
# CHECK-NOT: AuxFileRecord {
|
|
# CHECK: }
|
|
# CHECK: ]
|
|
|
|
!COFF
|
|
header: !Header
|
|
Machine: IMAGE_FILE_MACHINE_I386 # (0x14c)
|
|
Characteristics: [ IMAGE_FILE_DEBUG_STRIPPED ]
|
|
sections:
|
|
symbols:
|
|
- !Symbol
|
|
Name: .file
|
|
Value: 0
|
|
SectionNumber: -2
|
|
SimpleType: IMAGE_SYM_TYPE_NULL
|
|
ComplexType: IMAGE_SYM_DTYPE_NULL
|
|
StorageClass: IMAGE_SYM_CLASS_FILE
|
|
File: first-section-has-eighteen-characters.asm
|
|
- !Symbol
|
|
Name: '@comp.id'
|
|
Value: 13485607
|
|
SectionNumber: -1
|
|
SimpleType: IMAGE_SYM_TYPE_NULL
|
|
ComplexType: IMAGE_SYM_DTYPE_NULL
|
|
StorageClass: IMAGE_SYM_CLASS_STATIC
|