blob: 92dc505c0a1e178c9be7545904d46076b64518f0 [file] [log] [blame]
Sean Fertilef09d54e2019-07-09 19:21:01 +00001//===- MC/MCAsmInfoXCOFF.cpp - XCOFF asm properties ------------ *- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/MC/MCAsmInfoXCOFF.h"
10
11using namespace llvm;
12
13void MCAsmInfoXCOFF::anchor() {}
14
15MCAsmInfoXCOFF::MCAsmInfoXCOFF() {
16 IsLittleEndian = false;
17 HasDotTypeDotSizeDirective = false;
Sean Fertile942537d2019-07-22 19:15:29 +000018 COMMDirectiveAlignmentIsInBytes = false;
David Tenty8558aac2019-08-08 15:40:35 +000019 LCOMMDirectiveAlignmentType = LCOMM::Log2Alignment;
Sean Fertilef09d54e2019-07-09 19:21:01 +000020}