mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Remove llvm-mc's disable-cfi option.
It was dead. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204404 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -63,9 +63,6 @@ OutputAsmVariant("output-asm-variant",
|
|||||||
static cl::opt<bool>
|
static cl::opt<bool>
|
||||||
RelaxAll("mc-relax-all", cl::desc("Relax all fixups"));
|
RelaxAll("mc-relax-all", cl::desc("Relax all fixups"));
|
||||||
|
|
||||||
static cl::opt<bool>
|
|
||||||
DisableCFI("disable-cfi", cl::desc("Do not use .cfi_* directives"));
|
|
||||||
|
|
||||||
static cl::opt<bool>
|
static cl::opt<bool>
|
||||||
NoExecStack("mc-no-exec-stack", cl::desc("File doesn't need an exec stack"));
|
NoExecStack("mc-no-exec-stack", cl::desc("File doesn't need an exec stack"));
|
||||||
|
|
||||||
@@ -433,10 +430,10 @@ int main(int argc, char **argv) {
|
|||||||
CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
|
CE = TheTarget->createMCCodeEmitter(*MCII, *MRI, *STI, Ctx);
|
||||||
MAB = TheTarget->createMCAsmBackend(*MRI, TripleName, MCPU);
|
MAB = TheTarget->createMCAsmBackend(*MRI, TripleName, MCPU);
|
||||||
}
|
}
|
||||||
bool UseCFI = !DisableCFI;
|
Str.reset(TheTarget->createAsmStreamer(Ctx, FOS, /*asmverbose*/ true,
|
||||||
Str.reset(TheTarget->createAsmStreamer(
|
/*UseCFI*/ true,
|
||||||
Ctx, FOS, /*asmverbose*/ true, UseCFI,
|
/*useDwarfDirectory*/
|
||||||
/*useDwarfDirectory*/ true, IP, CE, MAB, ShowInst));
|
true, IP, CE, MAB, ShowInst));
|
||||||
|
|
||||||
} else if (FileType == OFT_Null) {
|
} else if (FileType == OFT_Null) {
|
||||||
Str.reset(createNullStreamer(Ctx));
|
Str.reset(createNullStreamer(Ctx));
|
||||||
|
Reference in New Issue
Block a user