1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
## Warn if --disassemble-functions specifies an unknown symbol.
# RUN: yaml2obj -o %t.o %s
# RUN: rm -f %t.a
# RUN: llvm-ar qc %t.a %t.o %t.o
# RUN: llvm-objdump --disassemble-functions=foo %t.o 2>&1 | FileCheck %s
# RUN: llvm-objdump --disassemble-functions=foo %t.a 2>&1 | FileCheck %s --check-prefix=MULTI
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_X86_64
# CHECK: warning: failed to disassemble missing function foo
# MULTI: file format ELF64-x86-64
# MULTI: warning: failed to disassemble missing function foo
# MULTI: file format ELF64-x86-64
# MULTI: warning: failed to disassemble missing function foo
|