projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca17890
)
Fix a typo that Duncan spotted.
author
Dan Gohman
<gohman@apple.com>
Fri, 17 Jul 2009 20:51:47 +0000
(20:51 +0000)
committer
Dan Gohman
<gohman@apple.com>
Fri, 17 Jul 2009 20:51:47 +0000
(20:51 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76233
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/VMCore/Instructions.cpp
patch
|
blob
|
history
diff --git
a/lib/VMCore/Instructions.cpp
b/lib/VMCore/Instructions.cpp
index a5e082c2377ad53629cc6d9bce7857fd00c22e95..915cbb8f8b82a66fedad589bd617f4a926597d07 100644
(file)
--- 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];
- // Transf
o
r the hasNoPointerOverflow() value from the original GEPI.
+ // Transf
e
r the hasNoPointerOverflow() value from the original GEPI.
setHasNoPointerOverflow(GEPI.hasNoPointerOverflow());
}