diff options
author | Rui Ueyama <ruiu@google.com> | 2016-01-21 00:45:39 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2016-01-21 00:45:39 +0000 |
commit | 1e056ebe3c9280c29762368c2941777bbd1fed84 (patch) | |
tree | 520a5185ba4a67307335f09e8c8b05bdf5e9cc0c | |
parent | e313f8f8ff2c3824dec790fe4a4cd7b813de6abb (diff) | |
download | bcm5719-llvm-1e056ebe3c9280c29762368c2941777bbd1fed84.tar.gz bcm5719-llvm-1e056ebe3c9280c29762368c2941777bbd1fed84.zip |
Fix indentation.
llvm-svn: 258374
-rw-r--r-- | lld/ELF/InputFiles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/InputFiles.cpp b/lld/ELF/InputFiles.cpp index 6a908d450f6..867cc497f06 100644 --- a/lld/ELF/InputFiles.cpp +++ b/lld/ELF/InputFiles.cpp @@ -282,7 +282,7 @@ ObjectFile<ELFT>::getSection(const Elf_Sym &Sym) const { template <class ELFT> SymbolBody *ObjectFile<ELFT>::createSymbolBody(StringRef StringTable, - const Elf_Sym *Sym) { + const Elf_Sym *Sym) { ErrorOr<StringRef> NameOrErr = Sym->getName(StringTable); error(NameOrErr); StringRef Name = *NameOrErr; |