summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-06-19 00:55:23 +0000
committerSean Silva <silvas@purdue.edu>2013-06-19 00:55:23 +0000
commit1230407e341969202d0620f9cc916c3568a50d05 (patch)
tree8a0ec183503353ebbb79fbd477fdbe04b261c459 /tools
parent5ba1225fb074f8035668637292d994d4c39757d1 (diff)
downloadllvm-1230407e341969202d0620f9cc916c3568a50d05.tar.gz
llvm-1230407e341969202d0620f9cc916c3568a50d05.tar.bz2
llvm-1230407e341969202d0620f9cc916c3568a50d05.tar.xz
There is no ELF ABI version enum.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184267 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/yaml2obj/yaml2elf.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/yaml2obj/yaml2elf.cpp b/tools/yaml2obj/yaml2elf.cpp
index 80d21e795d..942e75904e 100644
--- a/tools/yaml2obj/yaml2elf.cpp
+++ b/tools/yaml2obj/yaml2elf.cpp
@@ -196,7 +196,6 @@ static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc) {
Header.e_ident[EI_VERSION] = EV_CURRENT;
// TODO: Implement ELF_ELFOSABI enum.
Header.e_ident[EI_OSABI] = ELFOSABI_NONE;
- // TODO: Implement ELF_ABIVERSION enum.
Header.e_ident[EI_ABIVERSION] = 0;
Header.e_type = Hdr.Type;
Header.e_machine = Hdr.Machine;