diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-25 13:15:48 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-25 13:15:48 -0800 |
commit | bf669e1322d12bf4dd5271871bd4423cc88b5cb9 (patch) | |
tree | cd8dcf24e1cf3a21a78d309987094850ef52a476 /lib/Target/CppBackend/CPPBackend.cpp | |
parent | a8c84865fa678cd5baf55122388937fe5ebcad38 (diff) |
add an easy way to customize name and number of arguments in a callhandler
Diffstat (limited to 'lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | lib/Target/CppBackend/CPPBackend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/CppBackend/CPPBackend.cpp b/lib/Target/CppBackend/CPPBackend.cpp index f847ba1469..a1102a7188 100644 --- a/lib/Target/CppBackend/CPPBackend.cpp +++ b/lib/Target/CppBackend/CPPBackend.cpp @@ -1705,7 +1705,7 @@ std::string CppWriter::generateInstruction(const Instruction *I) { } case Instruction::Call: { const CallInst *CI = cast<CallInst>(I); - text = handleCall(CI); + text = handleCall(CI) + ';'; break; } case Instruction::Select: { |