
This creates the next subfolders in the test directory: "COFF", "ELF", "MachO", "wasm". I've also removed platform specific prefixes, like "coff-*". One unused binary was removed as well: `Inputs/relocs.obj.elf-mips` Differential revision: https://reviews.llvm.org/D71203
17 lines
395 B
Plaintext
17 lines
395 B
Plaintext
; RUN: llvm-readobj --codeview %S/Inputs/codeview-label.obj | FileCheck %s
|
|
|
|
; CHECK-LABEL: Label (0x1000) {
|
|
; CHECK-NEXT: TypeLeafKind: LF_LABEL (0xE)
|
|
; CHECK-NEXT: Mode: Near (0x0)
|
|
; CHECK-NEXT: }
|
|
|
|
; To reproduce codeview-label.obj:
|
|
; $ cat codeview-label.asm
|
|
; .model flat, C
|
|
; .code
|
|
; public foo
|
|
; foo:
|
|
; ret
|
|
; end
|
|
; $ ml -c -Zi codeview-label.asm
|