mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-21 18:24:23 +00:00
Remove support for not using .loc directives.
Clang itself was not using this. The only way to access it was via llc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200862 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -435,11 +435,9 @@ int main(int argc, char **argv) {
|
||||
MAB = TheTarget->createMCAsmBackend(*MRI, TripleName, MCPU);
|
||||
}
|
||||
bool UseCFI = !DisableCFI;
|
||||
Str.reset(TheTarget->createAsmStreamer(Ctx, FOS, /*asmverbose*/true,
|
||||
/*useLoc*/ true,
|
||||
UseCFI,
|
||||
/*useDwarfDirectory*/ true,
|
||||
IP, CE, MAB, ShowInst));
|
||||
Str.reset(TheTarget->createAsmStreamer(
|
||||
Ctx, FOS, /*asmverbose*/ true, UseCFI,
|
||||
/*useDwarfDirectory*/ true, IP, CE, MAB, ShowInst));
|
||||
|
||||
} else if (FileType == OFT_Null) {
|
||||
Str.reset(createNullStreamer(Ctx));
|
||||
|
Reference in New Issue
Block a user