Non-standard hash classes are not in the std:: namespace

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3057 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2002-07-24 21:21:33 +00:00
parent 09ff1126da
commit 1089790546
5 changed files with 9 additions and 9 deletions

View File

@@ -21,8 +21,8 @@ class TargetMachine;
class MachineCodeForMethod : private Annotation {
std::hash_set<const Constant*> constantsForConstPool;
std::hash_map<const Value*, int> offsets;
hash_set<const Constant*> constantsForConstPool;
hash_map<const Value*, int> offsets;
const Function* method;
unsigned staticStackSize;
unsigned automaticVarsSize;
@@ -60,7 +60,7 @@ public:
inline unsigned getRegSpillsSize() const { return regSpillsSize; }
inline unsigned getMaxOptionalArgsSize() const { return maxOptionalArgsSize;}
inline unsigned getMaxOptionalNumArgs() const { return maxOptionalNumArgs;}
inline const std::hash_set<const Constant*>&
inline const hash_set<const Constant*>&
getConstantPoolValues() const {return constantsForConstPool;}
//