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 | 510fdfd92e3632977d1b25297d6ba4da5710b5a7 (patch) | |
| tree | 4cd93d13b6bc8940e0c5a7f4b7bcaca1e0fade42 | |
| parent | 80ca01c4666da8f192b4360239094fb45099ac43 (diff) | |
| download | bcm5719-llvm-510fdfd92e3632977d1b25297d6ba4da5710b5a7.tar.gz bcm5719-llvm-510fdfd92e3632977d1b25297d6ba4da5710b5a7.zip | |
Fix a typo that Duncan spotted.
llvm-svn: 76233
| -rw-r--r-- | llvm/lib/VMCore/Instructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Instructions.cpp b/llvm/lib/VMCore/Instructions.cpp index a5e082c2377..915cbb8f8b8 100644 --- a/llvm/lib/VMCore/Instructions.cpp +++ b/llvm/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()); } |

