mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
021134fdb6
Follow-up to r235963: this matches other assemblers and is less unexpected (e.g. PR23227). llvm-svn: 252681
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
//===-- MCAsmInfoCOFF.cpp - COFF asm properties -----------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file defines target asm properties related what form asm statements
|
|
// should take in general on COFF-based targets
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "llvm/MC/MCAsmInfoCOFF.h"
|
|
using namespace llvm;
|
|
|
|
void MCAsmInfoCOFF::anchor() { }
|
|
|
|
MCAsmInfoCOFF::MCAsmInfoCOFF() {
|
|
// MingW 4.5 and later support .comm with log2 alignment, but .lcomm uses byte
|
|
// alignment.
|
|
COMMDirectiveAlignmentIsInBytes = false;
|
|
LCOMMDirectiveAlignmentType = LCOMM::ByteAlignment;
|
|
HasDotTypeDotSizeDirective = false;
|
|
HasSingleParameterDotFile = false;
|
|
WeakRefDirective = "\t.weak\t";
|
|
HasLinkOnceDirective = true;
|
|
|
|
// Doesn't support visibility:
|
|
HiddenVisibilityAttr = HiddenDeclarationVisibilityAttr = MCSA_Invalid;
|
|
ProtectedVisibilityAttr = MCSA_Invalid;
|
|
|
|
// Set up DWARF directives
|
|
SupportsDebugInformation = true;
|
|
NeedsDwarfSectionOffsetDirective = true;
|
|
|
|
UseIntegratedAssembler = true;
|
|
|
|
// At least MSVC inline-asm does AShr.
|
|
UseLogicalShr = false;
|
|
}
|
|
|
|
void MCAsmInfoMicrosoft::anchor() { }
|
|
|
|
MCAsmInfoMicrosoft::MCAsmInfoMicrosoft() {
|
|
}
|
|
|
|
void MCAsmInfoGNUCOFF::anchor() { }
|
|
|
|
MCAsmInfoGNUCOFF::MCAsmInfoGNUCOFF() {
|
|
|
|
}
|