From: Dan Gohman Date: Fri, 17 Jul 2009 20:51:47 +0000 (+0000) Subject: Fix a typo that Duncan spotted. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ff141c20627f58ffef390e04d40c9e4df820003e;p=oota-llvm.git Fix a typo that Duncan spotted. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76233 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp index a5e082c2377..915cbb8f8b8 100644 --- a/lib/VMCore/Instructions.cpp +++ b/lib/VMCore/Instructions.cpp @@ -1049,7 +1049,7 @@ GetElementPtrInst::GetElementPtrInst(const GetElementPtrInst &GEPI) for (unsigned i = 0, E = NumOperands; i != E; ++i) OL[i] = GEPIOL[i]; - // Transfor the hasNoPointerOverflow() value from the original GEPI. + // Transfer the hasNoPointerOverflow() value from the original GEPI. setHasNoPointerOverflow(GEPI.hasNoPointerOverflow()); }