Deleted Added
sdiff udiff text old ( 263508 ) new ( 266715 )
full compact
1//===-- MCAsmInfo.cpp - Asm Info -------------------------------------------==//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 62 unchanged lines hidden (view full) ---

71 HasAggressiveSymbolFolding = true;
72 COMMDirectiveAlignmentIsInBytes = true;
73 LCOMMDirectiveAlignmentType = LCOMM::NoAlignment;
74 HasDotTypeDotSizeDirective = true;
75 HasSingleParameterDotFile = true;
76 HasIdentDirective = false;
77 HasNoDeadStrip = false;
78 WeakRefDirective = 0;
79 WeakDefDirective = 0;
80 LinkOnceDirective = 0;
81 HiddenVisibilityAttr = MCSA_Hidden;
82 HiddenDeclarationVisibilityAttr = MCSA_Hidden;
83 ProtectedVisibilityAttr = MCSA_Protected;
84 HasLEB128 = false;
85 SupportsDebugInformation = false;
86 ExceptionsType = ExceptionHandling::None;
87 DwarfUsesRelocationsAcrossSections = true;
88 DwarfRegNumForCFI = false;
89 HasMicrosoftFastStdCallMangling = false;
90 NeedsDwarfSectionOffsetDirective = false;
91}
92
93MCAsmInfo::~MCAsmInfo() {
94}
95

--- 45 unchanged lines hidden ---