brintos

brintos / llvm-project-archived public Read only

0
0
Text · 910 B · aba705a Raw
29 lines · c
1//===-- M68kMCCodeEmitter.h - M68k Code Emitter -----------------*- 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-exception6//7//===----------------------------------------------------------------------===//8///9/// \file10/// This file contains the declarations for the code emitter which are useful11/// outside of the emitter itself.12///13//===----------------------------------------------------------------------===//14 15#ifndef LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCCODEEMITTER_H16#define LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCCODEEMITTER_H17 18#include <cstdint>19 20namespace llvm {21namespace M68k {22 23const uint8_t *getMCInstrBeads(unsigned);24 25} // namespace M68k26} // namespace llvm27 28#endif // LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCCODEEMITTER_H29