diff options
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 aa85e690de..ed166a178c 100644 --- a/lib/Target/CppBackend/CPPBackend.cpp +++ b/lib/Target/CppBackend/CPPBackend.cpp @@ -1603,7 +1603,7 @@ std::string CppWriter::generateInstruction(const Instruction *I) { if (RV == NULL) { text += ";"; } else { - text += " " + getValueAsCastStr(RV) + ";"; + text += " " + getValueAsCastStr(RV, ASM_NONSPECIFIC) + ";"; } break; } |