From 3ac20a927cc82a440b8fb96a2fe8b2975a7f120e Mon Sep 17 00:00:00 2001 From: George Rimar Date: Thu, 20 Dec 2018 10:59:52 +0000 Subject: [PATCH] [llvm-objcopy] Use ELFOSABI_NONE instead of 0. NFC. This was requested during the review of D55886. (sorry, forgot to address this) llvm-svn: 349741 --- llvm/tools/llvm-objcopy/ELF/Object.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/tools/llvm-objcopy/ELF/Object.cpp b/llvm/tools/llvm-objcopy/ELF/Object.cpp index dab0b9f..39794a3 100644 --- a/llvm/tools/llvm-objcopy/ELF/Object.cpp +++ b/llvm/tools/llvm-objcopy/ELF/Object.cpp @@ -703,7 +703,7 @@ static bool compareSegmentsByPAddr(const Segment *A, const Segment *B) { template void BinaryELFBuilder::initFileHeader() { Obj->Flags = 0x0; Obj->Type = ET_REL; - Obj->OSABI = 0; + Obj->OSABI = ELFOSABI_NONE; Obj->ABIVersion = 0; Obj->Entry = 0x0; Obj->Machine = EMachine; -- 2.7.4