Fix indentation.

llvm-svn: 182709
This commit is contained in:
Rui Ueyama 2013-05-25 04:59:32 +00:00
parent bc2ee4c4e6
commit f52a930cfb
1 changed files with 6 additions and 2 deletions

View File

@ -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 "";
}