diff options
-rw-r--r-- | lib/Target/CppBackend/CPPBackend.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/Target/CppBackend/CPPBackend.cpp b/lib/Target/CppBackend/CPPBackend.cpp index e435f16..75a77a8 100644 --- a/lib/Target/CppBackend/CPPBackend.cpp +++ b/lib/Target/CppBackend/CPPBackend.cpp @@ -722,16 +722,12 @@ namespace { std::string constName(getCppName(CV)); std::string typeName(getCppName(CV->getType())); - if (CV->isNullValue()) { - Out << "Constant* " << constName << " = Constant::getNullValue(" - << typeName << ");"; - nl(Out); - return; - } + if (isa<GlobalValue>(CV)) { // Skip variables and functions, we emit them elsewhere return; } + if (const ConstantInt *CI = dyn_cast<ConstantInt>(CV)) { std::string constValue = CI->getValue().toString(10, true); Out << "ConstantInt* " << constName << " = ConstantInt::get(APInt(" @@ -742,7 +738,7 @@ namespace { << " = ConstantAggregateZero::get(" << typeName << ");"; } else if (isa<ConstantPointerNull>(CV)) { Out << "ConstantPointerNull* " << constName - << " = ConstanPointerNull::get(" << typeName << ");"; + << " = ConstantPointerNull::get(" << typeName << ");"; } else if (const ConstantFP *CFP = dyn_cast<ConstantFP>(CV)) { Out << "ConstantFP* " << constName << " = "; printCFP(CFP); |