mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-24 08:33:39 +00:00
4cc5eb2615
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1070 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
//===-- llvm/Opt/AllOpts.h - Header file to get all opt passes ---*- C++ -*--=//
|
|
//
|
|
// 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
|
|
//
|
|
#include "llvm/Optimizations/DCE.h"
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Constant Propogation
|
|
//
|
|
#include "llvm/Optimizations/ConstantProp.h"
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Method Inlining Pass
|
|
//
|
|
#include "llvm/Optimizations/MethodInlining.h"
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Symbol Stripping Pass
|
|
//
|
|
#include "llvm/Optimizations/SymbolStripping.h"
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Induction Variable Cannonicalization
|
|
//
|
|
|
|
#include "llvm/Optimizations/InductionVars.h"
|
|
|
|
#endif
|