Deleted Added
full compact
llvm-link.cpp (212793) llvm-link.cpp (218885)
1//===- llvm-link.cpp - Low-level LLVM linker ------------------------------===//
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//===----------------------------------------------------------------------===//

--- 6 unchanged lines hidden (view full) ---

15#include "llvm/Linker.h"
16#include "llvm/LLVMContext.h"
17#include "llvm/Module.h"
18#include "llvm/Analysis/Verifier.h"
19#include "llvm/Bitcode/ReaderWriter.h"
20#include "llvm/Support/CommandLine.h"
21#include "llvm/Support/ManagedStatic.h"
22#include "llvm/Support/PrettyStackTrace.h"
1//===- llvm-link.cpp - Low-level LLVM linker ------------------------------===//
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//===----------------------------------------------------------------------===//

--- 6 unchanged lines hidden (view full) ---

15#include "llvm/Linker.h"
16#include "llvm/LLVMContext.h"
17#include "llvm/Module.h"
18#include "llvm/Analysis/Verifier.h"
19#include "llvm/Bitcode/ReaderWriter.h"
20#include "llvm/Support/CommandLine.h"
21#include "llvm/Support/ManagedStatic.h"
22#include "llvm/Support/PrettyStackTrace.h"
23#include "llvm/Support/raw_ostream.h"
23#include "llvm/Support/ToolOutputFile.h"
24#include "llvm/Support/SystemUtils.h"
25#include "llvm/Support/IRReader.h"
24#include "llvm/Support/SystemUtils.h"
25#include "llvm/Support/IRReader.h"
26#include "llvm/System/Signals.h"
27#include "llvm/System/Path.h"
26#include "llvm/Support/Signals.h"
27#include "llvm/Support/Path.h"
28#include <memory>
29using namespace llvm;
30
31static cl::list<std::string>
32InputFilenames(cl::Positional, cl::OneOrMore,
33 cl::desc("<input bitcode files>"));
34
35static cl::opt<std::string>

--- 106 unchanged lines hidden ---
28#include <memory>
29using namespace llvm;
30
31static cl::list<std::string>
32InputFilenames(cl::Positional, cl::OneOrMore,
33 cl::desc("<input bitcode files>"));
34
35static cl::opt<std::string>

--- 106 unchanged lines hidden ---