mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
b5f662fa03
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21425 91177308-0d34-0410-b5e6-96231b3b80d8
34 lines
1.0 KiB
C++
34 lines
1.0 KiB
C++
//===-- Skeleton.h - Target private header file -----------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file contains the definitions shared among the various components of the
|
|
// Skeleton backend.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef TARGET_SKELETON_H
|
|
#define TARGET_SKELETON_H
|
|
|
|
#include <iosfwd>
|
|
|
|
/// Put prototypes here for functions used to create various passes.
|
|
|
|
|
|
// Defines symbolic enum names for target registers. This defines a mapping
|
|
// from register name to register number. These are generated by tblgen from
|
|
// your target file.
|
|
//
|
|
#include "SkeletonGenRegisterNames.inc"
|
|
|
|
// Defines symbolic enum names for the target instructions.
|
|
//
|
|
#include "SkeletonGenInstrNames.inc"
|
|
|
|
#endif
|