forked from OSchip/llvm-project
Adjusted DSPtr::Profile method again, since my last patch broke the build.
llvm-svn: 46051
This commit is contained in:
parent
2e50a6f90f
commit
73e5f2bb17
|
|
@ -52,7 +52,8 @@ public:
|
|||
bool isSubExpr() const { return getKind() == IsSubExp; }
|
||||
|
||||
inline void Profile(llvm::FoldingSetNodeID& ID) const {
|
||||
ID.AddInteger(Raw);
|
||||
ID.AddPointer(getPtr());
|
||||
ID.AddInteger((unsigned) getKind());
|
||||
}
|
||||
inline bool operator==(const DSPtr& X) const { return Raw == X.Raw; }
|
||||
inline bool operator!=(const DSPtr& X) const { return Raw != X.Raw; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue