mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
*** empty log message ***
llvm-svn: 4343
This commit is contained in:
parent
fdca057f8d
commit
57a54cb166
@ -451,7 +451,7 @@ void CWriter::writeOperandInternal(Value *Operand) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Operand->hasName()) {
|
if (Operand->hasName()) {
|
||||||
Out << getValueName(Operand);
|
Out << getValueName(Operand);
|
||||||
} else if (Constant *CPV = dyn_cast<Constant>(Operand)) {
|
} else if (Constant *CPV = dyn_cast<Constant>(Operand)) {
|
||||||
printConstant(CPV);
|
printConstant(CPV);
|
||||||
@ -575,6 +575,19 @@ void CWriter::printModule(Module *M) {
|
|||||||
Out << "extern void * malloc(size_t);\n\n";
|
Out << "extern void * malloc(size_t);\n\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Output the global variable declerations
|
||||||
|
if (!M->gempty()) {
|
||||||
|
Out << "\n\n/* Global Variable Declerations */\n";
|
||||||
|
for (Module::giterator I = M->gbegin(), E = M->gend(); I != E; ++I)
|
||||||
|
if (!I->isExternal()) {
|
||||||
|
Out << "extern ";
|
||||||
|
printType(I->getType()->getElementType(), getValueName(I));
|
||||||
|
|
||||||
|
Out << ";\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Output the global variable definitions and contents...
|
// Output the global variable definitions and contents...
|
||||||
if (!M->gempty()) {
|
if (!M->gempty()) {
|
||||||
Out << "\n\n/* Global Variable Definitions and Initialization */\n";
|
Out << "\n\n/* Global Variable Definitions and Initialization */\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user