Path: blob/main/contrib/llvm-project/llvm/lib/Target/M68k/MCTargetDesc/M68kMCAsmInfo.cpp
35294 views
//===-- M68kMCAsmInfo.cpp - M68k Asm Properties -----------------*- C++ -*-===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7///8/// \file9/// This file contains the definitions of the M68k MCAsmInfo properties.10///11//===----------------------------------------------------------------------===//1213#include "M68kMCAsmInfo.h"1415#include "llvm/TargetParser/Triple.h"1617using namespace llvm;1819void M68kELFMCAsmInfo::anchor() {}2021M68kELFMCAsmInfo::M68kELFMCAsmInfo(const Triple &T) {22CodePointerSize = 4;23CalleeSaveStackSlotSize = 4;2425IsLittleEndian = false;2627// Debug Information28SupportsDebugInformation = true;2930// Exceptions handling31ExceptionsType = ExceptionHandling::DwarfCFI;3233UseMotorolaIntegers = true;34CommentString = ";";35}363738