2013-04-10 16:58:04 +00:00
|
|
|
//===---- MipsOs16.h for Mips Option -Os16 --------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines an optimization phase for the MIPS target.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_LIB_TARGET_MIPS_MIPSOS16_H
|
|
|
|
#define LLVM_LIB_TARGET_MIPS_MIPSOS16_H
|
|
|
|
|
2013-04-10 16:58:04 +00:00
|
|
|
namespace llvm {
|
2015-03-09 15:50:58 +00:00
|
|
|
class MipsTargetMachine;
|
|
|
|
class ModulePass;
|
2013-04-10 16:58:04 +00:00
|
|
|
|
|
|
|
ModulePass *createMipsOs16(MipsTargetMachine &TM);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|