diff options
author | Dan Gohman <gohman@apple.com> | 2008-12-07 21:33:27 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-12-07 21:33:27 +0000 |
commit | c765a5acad26ae3d86832d4153e6569d1043a9ca (patch) | |
tree | 9822497d6224270a3eb1e8af63d97394d171c1af | |
parent | 994fd5354b13c9b934f7ff82ac6e5742f982af33 (diff) |
Use bool instead of int, now that it no longer evokes a warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60678 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/MemoryDependenceAnalysis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index 55df36dc29..061517a289 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -153,7 +153,7 @@ namespace llvm { private: /// ValueIsLoadPair - This is a pair<Value*, bool> where the bool is true if /// the dependence is a read only dependence, false if read/write. - typedef PointerIntPair<Value*, 1, int> ValueIsLoadPair; + typedef PointerIntPair<Value*, 1, bool> ValueIsLoadPair; /// CachedNonLocalPointerInfo - This map stores the cached results of doing /// a pointer lookup at the bottom of a block. The key of this map is the |