*** empty log message ***

llvm-svn: 3056
This commit is contained in:
Chris Lattner
2002-07-24 21:21:32 +00:00
parent f0f2da260f
commit e98dd5fcac
14 changed files with 23 additions and 25 deletions

View File

@@ -266,7 +266,7 @@ MachineCodeForMethod::popAllTempValues(const TargetMachine& target)
int
MachineCodeForMethod::getOffset(const Value* val) const
{
std::hash_map<const Value*, int>::const_iterator pair = offsets.find(val);
hash_map<const Value*, int>::const_iterator pair = offsets.find(val);
return (pair == offsets.end())? INVALID_FRAME_OFFSET : pair->second;
}