mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 00:21:03 +00:00
Remove the UseCFI option from createAsmStreamer.
We were already always passing true, this just removes the option. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208205 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1468,10 +1468,9 @@ void MCAsmStreamer::FinishImpl() {
|
||||
|
||||
MCStreamer *llvm::createAsmStreamer(MCContext &Context,
|
||||
formatted_raw_ostream &OS,
|
||||
bool isVerboseAsm, bool useCFI,
|
||||
bool useDwarfDirectory, MCInstPrinter *IP,
|
||||
MCCodeEmitter *CE, MCAsmBackend *MAB,
|
||||
bool ShowInst) {
|
||||
return new MCAsmStreamer(Context, OS, isVerboseAsm, useCFI, useDwarfDirectory,
|
||||
bool isVerboseAsm, bool useDwarfDirectory,
|
||||
MCInstPrinter *IP, MCCodeEmitter *CE,
|
||||
MCAsmBackend *MAB, bool ShowInst) {
|
||||
return new MCAsmStreamer(Context, OS, isVerboseAsm, true, useDwarfDirectory,
|
||||
IP, CE, MAB, ShowInst);
|
||||
}
|
||||
|
Reference in New Issue
Block a user