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-exception 6 // 7 //===----------------------------------------------------------------------===// 8 /// 9 /// \file 10 /// This file contains the declarations for the code emitter which are useful 11 /// outside of the emitter itself. 12 /// 13 //===----------------------------------------------------------------------===// 14 15 #ifndef LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCCODEEMITTER_H 16 #define LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCCODEEMITTER_H 17 18 #include <cstdint> 19 20 namespace llvm { 21 namespace M68k { 22 23 const uint8_t *getMCInstrBeads(unsigned); 24 25 } // namespace M68k 26 } // namespace llvm 27 28 #endif // LLVM_LIB_TARGET_M68K_MCTARGETDESC_M68KMCCODEEMITTER_H 29