mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
DebugInfo: TargetOptions/MCAsmInfo support for compressed debug info sections
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204957 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -50,8 +50,8 @@ namespace llvm {
|
||||
DisableTailCalls(false), StackAlignmentOverride(0),
|
||||
EnableFastISel(false), PositionIndependentExecutable(false),
|
||||
EnableSegmentedStacks(false), UseInitArray(false),
|
||||
DisableIntegratedAS(false), TrapFuncName(""),
|
||||
FloatABIType(FloatABI::Default),
|
||||
DisableIntegratedAS(false), CompressDebugSections(false),
|
||||
TrapFuncName(""), FloatABIType(FloatABI::Default),
|
||||
AllowFPOpFusion(FPOpFusion::Standard) {}
|
||||
|
||||
/// PrintMachineCode - This flag is enabled when the -print-machineinstrs
|
||||
@@ -161,6 +161,9 @@ namespace llvm {
|
||||
/// Disable the integrated assembler.
|
||||
unsigned DisableIntegratedAS : 1;
|
||||
|
||||
/// Compress DWARF debug sections.
|
||||
unsigned CompressDebugSections : 1;
|
||||
|
||||
/// getTrapFunctionName - If this returns a non-empty string, this means
|
||||
/// isel should lower Intrinsic::trap to a call to the specified function
|
||||
/// name instead of an ISD::TRAP node.
|
||||
|
Reference in New Issue
Block a user