diff options
author | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 20:22:25 +0000 |
---|---|---|
committer | Anand Shukla <ashukla@cs.uiuc.edu> | 2002-06-25 20:22:25 +0000 |
commit | 4a9f9337511441af0624e754ad9b2b1262ee584d (patch) | |
tree | 0fe60ad7a0dbfb4dad68bd8f1e57948f5b9e708d /include/llvm/Analysis/DataStructure.h | |
parent | b7c6c2a5cc5c7d11243a14a5c01859b1a506ac0c (diff) |
changes to make it compatible with 64bit gcc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2786 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructure.h')
-rw-r--r-- | include/llvm/Analysis/DataStructure.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Analysis/DataStructure.h b/include/llvm/Analysis/DataStructure.h index 5f1617c0a0..c9b2018010 100644 --- a/include/llvm/Analysis/DataStructure.h +++ b/include/llvm/Analysis/DataStructure.h @@ -73,6 +73,7 @@ public: // operator< - Allow insertion into a map... bool operator<(const PointerValSet &PVS) const; bool operator==(const PointerValSet &PVS) const; + bool operator!=(const PointerValSet &PVS) const { return !operator==(PVS); } const PointerVal &operator[](unsigned i) const { return Vals[i]; } |