diff --git a/tools/llvm2cpp/CppWriter.cpp b/tools/llvm2cpp/CppWriter.cpp index 1076b59c021..a5aa7d46e3c 100644 --- a/tools/llvm2cpp/CppWriter.cpp +++ b/tools/llvm2cpp/CppWriter.cpp @@ -1435,9 +1435,14 @@ void CppWriter::printFunctionUses(const Function* F) { for (unsigned i = 0; i < I->getNumOperands(); ++i) { Value* operand = I->getOperand(i); printType(operand->getType()); - if (GlobalValue* GV = dyn_cast(operand)) + + // If the operand references a GVal or Constant, make a note of it + if (GlobalValue* GV = dyn_cast(operand)) { gvs.push_back(GV); - else if (Constant* C = dyn_cast(operand)) + if (GlobalVariable *GVar = dyn_cast(GV)) + if (GVar->hasInitializer()) + consts.push_back(GVar->getInitializer()); + } else if (Constant* C = dyn_cast(operand)) consts.push_back(C); } }