2001-09-14 05:37:52 +02:00
|
|
|
//===-- llvm/CodeGen/Sparc.h - Sparc Target Description ----------*- C++ -*--=//
|
|
|
|
//
|
|
|
|
// This file defines the Sparc processor targets
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-07-21 14:39:03 +02:00
|
|
|
|
|
|
|
#ifndef LLVM_CODEGEN_SPARC_H
|
|
|
|
#define LLVM_CODEGEN_SPARC_H
|
|
|
|
|
2001-09-14 06:32:38 +02:00
|
|
|
class TargetMachine;
|
2001-07-28 06:26:42 +02:00
|
|
|
|
2001-09-14 06:32:38 +02:00
|
|
|
// allocateSparcTargetMachine - Allocate and return a subclass of TargetMachine
|
|
|
|
// that implements the Sparc backend.
|
|
|
|
//
|
|
|
|
TargetMachine *allocateSparcTargetMachine();
|
2001-08-29 01:10:41 +02:00
|
|
|
|
2001-07-21 14:39:03 +02:00
|
|
|
#endif
|