diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-07-22 10:37:47 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-07-22 10:37:47 +0000 |
commit | 3e44ea191713e6bfaf5c86a90bbb745103036c0c (patch) | |
tree | dab25a553e398406dde1018611caa5c054997205 /llvm/lib/Target/CppBackend/CPPBackend.cpp | |
parent | a1d7516cb7533ea4bd32ecdcdfef8414eeb9be07 (diff) | |
download | bcm5719-llvm-3e44ea191713e6bfaf5c86a90bbb745103036c0c.tar.gz bcm5719-llvm-3e44ea191713e6bfaf5c86a90bbb745103036c0c.zip |
undo 80 column trespassing I caused
llvm-svn: 109092
Diffstat (limited to 'llvm/lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | llvm/lib/Target/CppBackend/CPPBackend.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/Target/CppBackend/CPPBackend.cpp b/llvm/lib/Target/CppBackend/CPPBackend.cpp index 3b48fababa3..396b569f9d0 100644 --- a/llvm/lib/Target/CppBackend/CPPBackend.cpp +++ b/llvm/lib/Target/CppBackend/CPPBackend.cpp @@ -1412,7 +1412,8 @@ void CppWriter::printInstruction(const Instruction *I, nl(Out); } Out << "CallInst* " << iName << " = CallInst::Create(" - << opNames[call->getNumArgOperands()] << ", " << iName << "_params.begin(), " + << opNames[call->getNumArgOperands()] << ", " + << iName << "_params.begin(), " << iName << "_params.end(), \""; } else if (call->getNumArgOperands() == 1) { Out << "CallInst* " << iName << " = CallInst::Create(" |