//===- LTOBugPoint.h - Top-Level LTO BugPoint class -------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This class contains all of the shared state and information that is used by // the LTO BugPoint tool to track down bit code files that cause errors. // //===----------------------------------------------------------------------===// #include "llvm/ADT/SmallVector.h" #include #include class LTOBugPoint { public: LTOBugPoint(std::istream &args, std::istream &ins); private: /// LinkerInputFiles - This is a list of linker input files. Once populated /// this list is not modified. llvm::SmallVector LinkerInputFiles; llvm::SmallVector LinkerOptions; };