[Mips] Rename function to better reflect its purpose.

llvm-svn: 198786
This commit is contained in:
Simon Atanasyan 2014-01-08 20:42:30 +00:00
parent eef5351416
commit fc2e4e6a76
1 changed files with 2 additions and 2 deletions

View File

@ -119,10 +119,10 @@ private:
}
void handleGOT(const Reference &ref) {
const_cast<Reference &>(ref).setTarget(getEntry(ref.target()));
const_cast<Reference &>(ref).setTarget(getGOTEntry(ref.target()));
}
const GOTAtom *getEntry(const Atom *a) {
const GOTAtom *getGOTEntry(const Atom *a) {
auto got = _gotMap.find(a);
if (got != _gotMap.end())
return got->second;