mirror of
https://github.com/RPCS3/llvm.git
synced 2026-07-21 03:05:26 -04:00
25836c62bb
The aim of this patch is to refactor how we handle and report error. I suggest to use the same approach we use in LLD: delayed error reporting. For that I introduced 'HasError' flag which triggers when we report an error. Now we do not exit instantly on any error. The benefits are: 1) There are no more 'exit(1)' calls in the library code. 2) Code was simplified significantly in a few places. 3) It is now possible to print multiple errors instead of only one. Also, I changed the messages to be lower case and removed a full stop. Differential revision: https://reviews.llvm.org/D67182 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@371380 91177308-0d34-0410-b5e6-96231b3b80d8
31 lines
782 B
YAML
31 lines
782 B
YAML
## Show that yaml2obj rejects a symbol reference from a relocation if the symbol
|
|
## does not exist.
|
|
|
|
# RUN: not yaml2obj %s -o %t 2>&1 | FileCheck %s
|
|
|
|
## Check we are able to report multiple errors.
|
|
|
|
# CHECK: error: unknown symbol referenced: 'does_not_exist1' by YAML section '.rela.text'
|
|
# CHECK: error: unknown symbol referenced: 'does_not_exist2' by YAML section '.rela.text'
|
|
|
|
--- !ELF
|
|
FileHeader:
|
|
Class: ELFCLASS64
|
|
Data: ELFDATA2LSB
|
|
Type: ET_REL
|
|
Machine: EM_X86_64
|
|
Sections:
|
|
- Name: .text
|
|
Type: SHT_PROGBITS
|
|
- Name: .rela.text
|
|
Type: SHT_RELA
|
|
Info: .text
|
|
Link: .symtab
|
|
Relocations:
|
|
- Type: R_X86_64_PC32
|
|
Offset: 0
|
|
Symbol: does_not_exist1
|
|
- Type: R_X86_64_PC32
|
|
Offset: 0
|
|
Symbol: does_not_exist2
|