diff options
author | Rui Ueyama <ruiu@google.com> | 2013-05-25 04:59:32 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-05-25 04:59:32 +0000 |
commit | f52a930cfbd8e7e304cb76d8af2ab65e981cee9c (patch) | |
tree | 5e4bb24b8135f61eb9904fc4fef89cc880945806 | |
parent | bc2ee4c4e6e4ecb8acbc37144edd8957ce4722b1 (diff) | |
download | bcm5719-llvm-f52a930cfbd8e7e304cb76d8af2ab65e981cee9c.tar.gz bcm5719-llvm-f52a930cfbd8e7e304cb76d8af2ab65e981cee9c.zip |
Fix indentation.
llvm-svn: 182709
-rw-r--r-- | lld/lib/ReaderWriter/ELF/Atoms.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lld/lib/ReaderWriter/ELF/Atoms.h b/lld/lib/ReaderWriter/ELF/Atoms.h index d40227f80a6..2aa5e80e6dd 100644 --- a/lld/lib/ReaderWriter/ELF/Atoms.h +++ b/lld/lib/ReaderWriter/ELF/Atoms.h @@ -95,7 +95,9 @@ public: virtual const ELFFile<ELFT> &file() const { return _owningFile; - } virtual Scope scope() const { + } + + virtual Scope scope() const { if (_symbol->st_other == llvm::ELF::STV_HIDDEN) return scopeLinkageUnit; if (_symbol->getBinding() == llvm::ELF::STB_LOCAL) @@ -512,7 +514,9 @@ public: virtual const class ELFFile<ELFT> &file() const { return _owningFile; - } virtual StringRef name() const { + } + + virtual StringRef name() const { return ""; } |