From 956033a4f5de491fcc07bc3ef0700ad22fd836a0 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 28 Nov 2008 22:41:36 +0000 Subject: [PATCH] comment cleanups. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@60220 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/MemoryDependenceAnalysis.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/llvm/Analysis/MemoryDependenceAnalysis.h b/include/llvm/Analysis/MemoryDependenceAnalysis.h index 8021b064628..ea544ca3a6f 100644 --- a/include/llvm/Analysis/MemoryDependenceAnalysis.h +++ b/include/llvm/Analysis/MemoryDependenceAnalysis.h @@ -31,16 +31,16 @@ namespace llvm { class MemoryDependenceAnalysis : public FunctionPass { private: // A map from instructions to their dependency, with a boolean - // flags for whether this mapping is confirmed or not + // flags for whether this mapping is confirmed or not. typedef DenseMap > depMapType; depMapType depGraphLocal; // A map from instructions to their non-local dependencies. - typedef DenseMap > - nonLocalDepMapType; + typedef DenseMap > nonLocalDepMapType; nonLocalDepMapType depGraphNonLocal; - // A reverse mapping form dependencies to the dependees. This is + // A reverse mapping from dependencies to the dependees. This is // used when removing instructions to keep the cache coherent. typedef DenseMap > reverseDepMapType; reverseDepMapType reverseDep; -- 2.34.1