Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / tools / llvm-objcopy / COFF / pe-fields.test
blobd2759590dc0535824bad1fed2958b480e2af2b68
1 ## Test that options for altering PE header fields error out on object files.
3 # RUN: yaml2obj %s -o %t.in.obj
5 # RUN: not llvm-objcopy --subsystem windows %t.in.obj %t.out.obj 2>&1 | FileCheck %s -DFILE=%t.out.obj
7 # CHECK: '[[FILE]]': unable to set subsystem on a relocatable object file
9 --- !COFF
10 header:
11   Machine:         IMAGE_FILE_MACHINE_AMD64
12   Characteristics: [  ]
13 sections:
14   - Name:            .text
15     Characteristics: [  ]
16     VirtualAddress:  4096
17     VirtualSize:     1
18     SectionData:     C3
19 symbols:
20 ...