summaryrefslogtreecommitdiff
path: root/tools/yaml2obj/yaml2elf.cpp
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-06-19 01:10:58 +0000
committerSean Silva <silvas@purdue.edu>2013-06-19 01:10:58 +0000
commit83bc34561bcf9eaccd5fc1e25f6be7397d4ae4ec (patch)
treef60803347f61349d3cb13e6dbb83796422281ed7 /tools/yaml2obj/yaml2elf.cpp
parent9e82a5c767b535a917993887d185a696eca023e9 (diff)
downloadllvm-83bc34561bcf9eaccd5fc1e25f6be7397d4ae4ec.tar.gz
llvm-83bc34561bcf9eaccd5fc1e25f6be7397d4ae4ec.tar.bz2
llvm-83bc34561bcf9eaccd5fc1e25f6be7397d4ae4ec.tar.xz
Remove spurious space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184272 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/yaml2obj/yaml2elf.cpp')
-rw-r--r--tools/yaml2obj/yaml2elf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/yaml2obj/yaml2elf.cpp b/tools/yaml2obj/yaml2elf.cpp
index a038f7f2ff..1c40842448 100644
--- a/tools/yaml2obj/yaml2elf.cpp
+++ b/tools/yaml2obj/yaml2elf.cpp
@@ -193,7 +193,7 @@ static int writeELF(raw_ostream &OS, const ELFYAML::Object &Doc) {
bool IsLittleEndian = ELFT::TargetEndianness == support::little;
Header.e_ident[EI_DATA] = IsLittleEndian ? ELFDATA2LSB : ELFDATA2MSB;
Header.e_ident[EI_VERSION] = EV_CURRENT;
- Header.e_ident[EI_OSABI] = Hdr.OSABI;
+ Header.e_ident[EI_OSABI] = Hdr.OSABI;
Header.e_ident[EI_ABIVERSION] = 0;
Header.e_type = Hdr.Type;
Header.e_machine = Hdr.Machine;