1 //===-- M68kMCAsmInfo.cpp - M68k Asm Properties -------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
10 /// This file contains the definitions of the M68k MCAsmInfo properties.
12 //===----------------------------------------------------------------------===//
14 #include "M68kMCAsmInfo.h"
16 #include "llvm/ADT/Triple.h"
20 void M68kELFMCAsmInfo::anchor() {}
22 M68kELFMCAsmInfo::M68kELFMCAsmInfo(const Triple
&T
) {
24 CalleeSaveStackSlotSize
= 4;
26 IsLittleEndian
= false;
29 SupportsDebugInformation
= true;
31 // Exceptions handling
32 ExceptionsType
= ExceptionHandling::DwarfCFI
;
34 UseMotorolaIntegers
= true;