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 | 14aa673e70ed9409a5df1dbd74e99eaef3c5e1aa (patch) | |
| tree | deb490130e9a9a81d249cfe837abef7e594a343a | |
| parent | d9f833be3435f3f93bda36f3291bded2b72fd02d (diff) | |
| download | bcm5719-llvm-14aa673e70ed9409a5df1dbd74e99eaef3c5e1aa.tar.gz bcm5719-llvm-14aa673e70ed9409a5df1dbd74e99eaef3c5e1aa.zip | |
Use bool instead of int, now that it no longer evokes a warning.
llvm-svn: 60678
| -rw-r--r-- | llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h b/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h index 55df36dc297..061517a2891 100644 --- a/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/llvm/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 |

