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 | b3a013a3a629e05b1670b744ab285812ea3b479c (patch) | |
| tree | f5ee4705f9de390aac85fc704122ed8115865019 /llvm/tools | |
| parent | 0559d9e4d4a75ef0e3885b1eb53ed0f4743b3cdf (diff) | |
| download | bcm5719-llvm-b3a013a3a629e05b1670b744ab285812ea3b479c.tar.gz bcm5719-llvm-b3a013a3a629e05b1670b744ab285812ea3b479c.zip  | |
Remove spurious space.
llvm-svn: 184272
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/yaml2obj/yaml2elf.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/yaml2obj/yaml2elf.cpp b/llvm/tools/yaml2obj/yaml2elf.cpp index a038f7f2ffc..1c408424481 100644 --- a/llvm/tools/yaml2obj/yaml2elf.cpp +++ b/llvm/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;  | 

