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
This commit is contained in:
Dan Gohman 2008-12-07 21:33:27 +00:00
parent 994fd5354b
commit c765a5acad

View File

@ -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