Deleted Added
sdiff udiff text old ( 263508 ) new ( 266715 )
full compact
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 ";
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 ---