Deleted Added
full compact
MCAsmInfoDarwin.cpp (263508) MCAsmInfoDarwin.cpp (266715)
1//===-- MCAsmInfoDarwin.cpp - Darwin asm properties -------------*- C++ -*-===//
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//===----------------------------------------------------------------------===//

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

31
32 AlignmentIsInBytes = false;
33 COMMDirectiveAlignmentIsInBytes = false;
34 LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment;
35 InlineAsmStart = " InlineAsm Start";
36 InlineAsmEnd = " InlineAsm End";
37
38 // Directives:
1//===-- MCAsmInfoDarwin.cpp - Darwin asm properties -------------*- C++ -*-===//
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//===----------------------------------------------------------------------===//

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

31
32 AlignmentIsInBytes = false;
33 COMMDirectiveAlignmentIsInBytes = false;
34 LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment;
35 InlineAsmStart = " InlineAsm Start";
36 InlineAsmEnd = " InlineAsm End";
37
38 // Directives:
39 WeakDefDirective = "\t.weak_definition ";
39 HasWeakDefDirective = true;
40 HasWeakDefCanBeHiddenDirective = true;
40 WeakRefDirective = "\t.weak_reference ";
41 ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
42 HasMachoZeroFillDirective = true; // Uses .zerofill
43 HasMachoTBSSDirective = true; // Uses .tbss
44 HasStaticCtorDtorReferenceInStaticMode = true;
45
46 // FIXME: Darwin 10 and newer don't need this.
47 LinkerRequiresNonEmptyDwarfLines = true;

--- 15 unchanged lines hidden ---
41 WeakRefDirective = "\t.weak_reference ";
42 ZeroDirective = "\t.space\t"; // ".space N" emits N zeros.
43 HasMachoZeroFillDirective = true; // Uses .zerofill
44 HasMachoTBSSDirective = true; // Uses .tbss
45 HasStaticCtorDtorReferenceInStaticMode = true;
46
47 // FIXME: Darwin 10 and newer don't need this.
48 LinkerRequiresNonEmptyDwarfLines = true;

--- 15 unchanged lines hidden ---