mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
a74db854a3
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4412 91177308-0d34-0410-b5e6-96231b3b80d8
24 lines
732 B
C++
24 lines
732 B
C++
//===-- llvm/Target/TargetMachineImpls.h - Target Descriptions --*- C++ -*-===//
|
|
//
|
|
// This file defines the entry point to getting access to the various target
|
|
// machine implementations available to LLVM.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_TARGET_TARGETMACHINEIMPLS_H
|
|
#define LLVM_TARGET_TARGETMACHINEIMPLS_H
|
|
|
|
class TargetMachine;
|
|
|
|
// allocateSparcTargetMachine - Allocate and return a subclass of TargetMachine
|
|
// that implements the Sparc backend.
|
|
//
|
|
TargetMachine *allocateSparcTargetMachine();
|
|
|
|
// allocateX86TargetMachine - Allocate and return a subclass of TargetMachine
|
|
// that implements the X86 backend.
|
|
//
|
|
TargetMachine *allocateX86TargetMachine();
|
|
|
|
#endif
|