projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
994fd53
)
Use bool instead of int, now that it no longer evokes a warning.
author
Dan Gohman
<gohman@apple.com>
Sun, 7 Dec 2008 21:33:27 +0000
(21:33 +0000)
committer
Dan Gohman
<gohman@apple.com>
Sun, 7 Dec 2008 21:33:27 +0000
(21:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60678
91177308
-0d34-0410-b5e6-
96231b3b80d8
include/llvm/Analysis/MemoryDependenceAnalysis.h
patch
|
blob
|
history
diff --git
a/include/llvm/Analysis/MemoryDependenceAnalysis.h
b/include/llvm/Analysis/MemoryDependenceAnalysis.h
index 55df36dc2974a0d97e4bd88b849f32adc85ee223..061517a2891a5bc6e710834a62be377aa08e832a 100644
(file)
--- 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