diff options
author | Sean Silva <silvas@purdue.edu> | 2013-06-19 01:10:58 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2013-06-19 01:10:58 +0000 |
commit | 83bc34561bcf9eaccd5fc1e25f6be7397d4ae4ec (patch) | |
tree | f60803347f61349d3cb13e6dbb83796422281ed7 | |
parent | 9e82a5c767b535a917993887d185a696eca023e9 (diff) | |
download | external_llvm-83bc34561bcf9eaccd5fc1e25f6be7397d4ae4ec.zip external_llvm-83bc34561bcf9eaccd5fc1e25f6be7397d4ae4ec.tar.gz external_llvm-83bc34561bcf9eaccd5fc1e25f6be7397d4ae4ec.tar.bz2 |
Remove spurious space.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184272 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/yaml2obj/yaml2elf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/yaml2obj/yaml2elf.cpp b/tools/yaml2obj/yaml2elf.cpp index a038f7f..1c40842 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; |