blob: 57b99c15f22f37eb1fa029d1a00c8d13c4a583ae [file] [log] [blame]
Devang Patele330f2d2008-07-18 22:59:45 +00001//===- LTOBugPoint.h - Top-Level LTO BugPoint class -------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This class contains all of the shared state and information that is used by
11// the LTO BugPoint tool to track down bit code files that cause errors.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/ADT/SmallVector.h"
16#include <string>
17#include <fstream>
18
19class LTOBugPoint {
20 public:
21
22 LTOBugPoint(std::istream &args, std::istream &ins);
23
24 private:
25 /// LinkerInputFiles - This is a list of linker input files. Once populated
26 /// this list is not modified.
27 llvm::SmallVector<std::string, 16> LinkerInputFiles;
28 llvm::SmallVector<std::string, 16> LinkerOptions;
29
30};