Fix a typo that Duncan spotted.
authorDan Gohman <gohman@apple.com>
Fri, 17 Jul 2009 20:51:47 +0000 (20:51 +0000)
committerDan Gohman <gohman@apple.com>
Fri, 17 Jul 2009 20:51:47 +0000 (20:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76233 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Instructions.cpp

index a5e082c2377ad53629cc6d9bce7857fd00c22e95..915cbb8f8b82a66fedad589bd617f4a926597d07 100644 (file)
@@ -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());
 }