No else after return.

llvm-svn: 198339
This commit is contained in:
Joerg Sonnenberger 2014-01-02 19:30:56 +00:00
parent 020dd898fc
commit 1e259e79b9
1 changed files with 3 additions and 3 deletions

View File

@ -307,9 +307,9 @@ public:
if (ref.target() && ref.target()->name() == "__tls_get_addr") {
const_cast<Reference &>(ref).setKindValue(R_X86_64_NONE);
return error_code::success();
} else
// Static code doesn't need PLTs.
const_cast<Reference &>(ref).setKindValue(R_X86_64_PC32);
}
// Static code doesn't need PLTs.
const_cast<Reference &>(ref).setKindValue(R_X86_64_PC32);
// Handle IFUNC.
if (const DefinedAtom *da =
dyn_cast_or_null<const DefinedAtom>(ref.target()))