From 14aa673e70ed9409a5df1dbd74e99eaef3c5e1aa Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Sun, 7 Dec 2008 21:33:27 +0000 Subject: Use bool instead of int, now that it no longer evokes a warning. llvm-svn: 60678 --- llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 where the bool is true if /// the dependence is a read only dependence, false if read/write. - typedef PointerIntPair ValueIsLoadPair; + typedef PointerIntPair 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 -- cgit v1.2.3