Displaying 1 result from an estimated 1 matches for "hassingleparameterdotfile".
2009 Nov 27
2
[LLVMdev] AsmPrinter question
Hi,
Could anyone tell me how can I turn off printing .file directive. I want to
make a custom output of the filename.
In AsmPrinter::doInitialization() I found:
if (MAI->hasSingleParameterDotFile()) {
/* Very minimal debug info. It is ignored if we emit actual
debug info. If we don't, this at least helps the user find where
a function came from. */
O << "\t.file\t\"" << M.getModuleIdentifier() << "\"\n";
}
Could someone explain what exact...