1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Fix a typo that Duncan spotted.

llvm-svn: 76233
This commit is contained in:
Dan Gohman 2009-07-17 20:51:47 +00:00
parent 25a722cc45
commit 2ca0f65c30

View 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());
}