forked from OSchip/llvm-project
Handle OUTPUT_FORMAT arguments in quotation marks
llvm-svn: 346068
This commit is contained in:
parent
3c617b2c23
commit
4ec5d67e49
|
@ -384,7 +384,7 @@ void ScriptParser::readOutputArch() {
|
|||
}
|
||||
|
||||
std::pair<ELFKind, uint16_t> ScriptParser::readBfdName() {
|
||||
StringRef S = next();
|
||||
StringRef S = unquote(next());
|
||||
if (S == "elf32-i386")
|
||||
return {ELF32LEKind, EM_386};
|
||||
if (S == "elf32-iamcu")
|
||||
|
|
|
@ -61,3 +61,9 @@
|
|||
# RUN: llvm-readobj %t.out -sections -section-data -symbols | FileCheck -check-prefix=X86-64 %s
|
||||
|
||||
# X86-64: Format: ELF64-x86-64
|
||||
|
||||
# RUN: echo 'OUTPUT_FORMAT("elf64-x86-64")' > %t.script
|
||||
# RUN: ld.lld -b binary %t.binary -T %t.script -o %t.out
|
||||
# RUN: llvm-readobj %t.out -sections -section-data -symbols | FileCheck -check-prefix=X86-64-in-quotes %s
|
||||
|
||||
# X86-64-in-quotes: Format: ELF64-x86-64
|
||||
|
|
Loading…
Reference in New Issue