diff options
author | Chris Lattner <sabre@nondot.org> | 2002-01-21 21:45:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-01-21 21:45:44 +0000 |
commit | c0c60a99d04c827b7f192e3a4fd16a4002784f89 (patch) | |
tree | 95eb018e65081ad85c85d6826e582abfa18e995f | |
parent | c4edcb3a17165e4cbd994671221e84053c68e7db (diff) |
Include all header files individually instead of this one
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1512 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Optimizations/AllOpts.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/include/llvm/Optimizations/AllOpts.h b/include/llvm/Optimizations/AllOpts.h deleted file mode 100644 index bbe9af6d31..0000000000 --- a/include/llvm/Optimizations/AllOpts.h +++ /dev/null @@ -1,42 +0,0 @@ -//===-- 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 |