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