OSDN Git Service

[llvm-objcopy] Use ELFOSABI_NONE instead of 0. NFC.
authorGeorge Rimar <grimar@accesssoftek.com>
Thu, 20 Dec 2018 10:59:52 +0000 (10:59 +0000)
committerGeorge Rimar <grimar@accesssoftek.com>
Thu, 20 Dec 2018 10:59:52 +0000 (10:59 +0000)
This was requested during the review of D55886.
(sorry, forgot to address this)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@349741 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvm-objcopy/ELF/Object.cpp

index dab0b9f..39794a3 100644 (file)
@@ -703,7 +703,7 @@ static bool compareSegmentsByPAddr(const Segment *A, const Segment *B) {
 template <class ELFT> void BinaryELFBuilder<ELFT>::initFileHeader() {
   Obj->Flags = 0x0;
   Obj->Type = ET_REL;
-  Obj->OSABI = 0;
+  Obj->OSABI = ELFOSABI_NONE;
   Obj->ABIVersion = 0;
   Obj->Entry = 0x0;
   Obj->Machine = EMachine;