17 lines
403 B
C++
17 lines
403 B
C++
#ifndef LLVM_LIB_TARGET_FOOT_FOOT_H
|
|
#define LLVM_LIB_TARGET_FOOT_FOOT_H
|
|
|
|
#include "FootTargetMachine.h"
|
|
#include "llvm/Pass.h"
|
|
#include "llvm/PassRegistry.h"
|
|
|
|
namespace llvm {
|
|
|
|
void initializeFootDAGToDAGISelLegacyPass(PassRegistry &);
|
|
Pass *createFootISelDAG(FootTargetMachine &TM);
|
|
Pass *createFootRemovePseudoInstructionsPassForLegacyPM();
|
|
|
|
} // namespace llvm
|
|
|
|
#endif // LLVM_LIB_TARGET_FOOT_FOOT_H
|