1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-23 21:13:02 +02:00
llvm-mirror/include/llvm/Optimizations/AllOpts.h

48 lines
1.3 KiB
C
Raw Normal View History

//===-- llvm/Opt/AllOpts.h - Header file to get all opt passes ---*- C++ -*--=//
2001-06-06 22:29:01 +02:00
//
// This file #include's all of the small optimization header files.
//
// Note that all optimizations return true if they modified the program, false
// if not.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_OPT_ALLOPTS_H
#define LLVM_OPT_ALLOPTS_H
//===----------------------------------------------------------------------===//
// Dead Code Elimination
2001-06-06 22:29:01 +02:00
//
#include "llvm/Optimizations/DCE.h"
2001-06-06 22:29:01 +02:00
2001-06-06 22:29:01 +02:00
//===----------------------------------------------------------------------===//
// Constant Propogation
//
#include "llvm/Optimizations/ConstantProp.h"
2001-06-06 22:29:01 +02:00
//===----------------------------------------------------------------------===//
// Method Inlining Pass
//
#include "llvm/Optimizations/MethodInlining.h"
2001-06-06 22:29:01 +02:00
//===----------------------------------------------------------------------===//
// Symbol Stripping Pass
//
#include "llvm/Optimizations/SymbolStripping.h"
2001-06-20 21:26:21 +02:00
//===----------------------------------------------------------------------===//
// Induction Variable Cannonicalization
//
#include "llvm/Optimizations/InductionVars.h"
2001-06-20 21:26:21 +02:00
//===----------------------------------------------------------------------===//
// LevelChange - Code lowering and raising
//
#include "llvm/Optimizations/LevelChange.h"
2001-06-06 22:29:01 +02:00
#endif