Fix typo.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41702 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Greene 2007-09-04 17:00:44 +00:00
parent 29d62bebd9
commit f0e856077c

View File

@ -788,7 +788,7 @@ void CppWriter::printConstant(const Constant *CV) {
<< " = ConstantExpr::getGetElementPtr("
<< getCppName(CE->getOperand(0)) << ", "
<< constName << "_indices.begin(), "
<< constName << "_indices.end(), "
<< constName << "_indices.end()"
<< " );";
} else if (CE->isCast()) {
printConstant(CE->getOperand(0));