aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/VMCore/Instructions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Instructions.cpp b/lib/VMCore/Instructions.cpp
index a5e082c237..915cbb8f8b 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());
}