[llvm-commits] [llvm] r76233 - /llvm/trunk/lib/VMCore/Instructions.cpp
Dan Gohman
gohman at apple.com
Fri Jul 17 13:52:17 PDT 2009
Author: djg
Date: Fri Jul 17 15:51:47 2009
New Revision: 76233
URL: http://llvm.org/viewvc/llvm-project?rev=76233&view=rev
Log:
Fix a typo that Duncan spotted.
Modified:
llvm/trunk/lib/VMCore/Instructions.cpp
Modified: llvm/trunk/lib/VMCore/Instructions.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Instructions.cpp?rev=76233&r1=76232&r2=76233&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Instructions.cpp (original)
+++ llvm/trunk/lib/VMCore/Instructions.cpp Fri Jul 17 15:51:47 2009
@@ -1049,7 +1049,7 @@
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());
}
More information about the llvm-commits
mailing list