From af8bc26449249682699bbd7d107a5708fe0413a3 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Thu, 11 Sep 2008 19:41:10 +0000 Subject: [PATCH] Fix comment typo. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56116 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Analysis/MemoryDependenceAnalysis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Analysis/MemoryDependenceAnalysis.cpp b/lib/Analysis/MemoryDependenceAnalysis.cpp index c93a680382e..d5b0afccb9b 100644 --- a/lib/Analysis/MemoryDependenceAnalysis.cpp +++ b/lib/Analysis/MemoryDependenceAnalysis.cpp @@ -97,7 +97,7 @@ Instruction* MemoryDependenceAnalysis::getCallSiteDependency(CallSite C, BasicBlock::iterator blockBegin = C.getInstruction()->getParent()->begin(); BasicBlock::iterator QI = C.getInstruction(); - // If the starting point was specifiy, use it + // If the starting point was specified, use it if (start) { QI = start; blockBegin = start->getParent()->begin();