mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Remove the xcore-file-directive option now that LLVM has proper support for
emitting file directives with one parameter. llvm-svn: 75787
This commit is contained in:
parent
312f8559cb
commit
f7ae8f4036
@ -41,12 +41,6 @@ using namespace llvm;
|
||||
|
||||
STATISTIC(EmittedInsts, "Number of machine instrs printed");
|
||||
|
||||
static cl::opt<std::string> FileDirective("xcore-file-directive", cl::Optional,
|
||||
cl::desc("Output a file directive into the assembly file"),
|
||||
cl::Hidden,
|
||||
cl::value_desc("filename"),
|
||||
cl::init(""));
|
||||
|
||||
static cl::opt<unsigned> MaxThreads("xcore-max-threads", cl::Optional,
|
||||
cl::desc("Maximum number of threads (for emulation thread-local storage)"),
|
||||
cl::Hidden,
|
||||
@ -72,7 +66,6 @@ namespace {
|
||||
bool PrintAsmOperand(const MachineInstr *MI, unsigned OpNo,
|
||||
unsigned AsmVariant, const char *ExtraCode);
|
||||
|
||||
void emitFileDirective(const std::string &filename);
|
||||
void emitGlobalDirective(const std::string &name);
|
||||
void emitExternDirective(const std::string &name);
|
||||
|
||||
@ -126,14 +119,6 @@ static void PrintEscapedString(const std::string &Str,
|
||||
}
|
||||
}
|
||||
|
||||
void XCoreAsmPrinter::
|
||||
emitFileDirective(const std::string &name)
|
||||
{
|
||||
O << "\t.file\t\"";
|
||||
PrintEscapedString(name, O);
|
||||
O << "\"\n";
|
||||
}
|
||||
|
||||
void XCoreAsmPrinter::
|
||||
emitGlobalDirective(const std::string &name)
|
||||
{
|
||||
@ -418,9 +403,6 @@ bool XCoreAsmPrinter::doInitialization(Module &M) {
|
||||
bool Result = AsmPrinter::doInitialization(M);
|
||||
DW = getAnalysisIfAvailable<DwarfWriter>();
|
||||
|
||||
if (!FileDirective.empty())
|
||||
emitFileDirective(FileDirective);
|
||||
|
||||
return Result;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user