diff options
author | Dan Gohman <gohman@apple.com> | 2009-07-17 20:51:47 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-07-17 20:51:47 +0000 |
commit | ff141c20627f58ffef390e04d40c9e4df820003e (patch) | |
tree | f00ac8aefbdd54232138f672c02e800cd5c3407f | |
parent | ca178908c8dc2303a1fb54a8a93bab0f0b964e11 (diff) |
Fix a typo that Duncan spotted.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76233 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/VMCore/Instructions.cpp | 2 |
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()); } |