From 73b21b738ee74f33f16ca6bf88bd4344b3fca0a9 Mon Sep 17 00:00:00 2001 From: John McCall Date: Thu, 29 Jul 2010 18:08:23 +0000 Subject: Make the header self-contained and follow #include guidelines. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109774 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm-diff/llvm-diff.cpp | 49 +++++++++++++++++++++++++------------------ 1 file changed, 29 insertions(+), 20 deletions(-) (limited to 'tools/llvm-diff/llvm-diff.cpp') diff --git a/tools/llvm-diff/llvm-diff.cpp b/tools/llvm-diff/llvm-diff.cpp index 1a3e1aeef8..9d8a7d3ec7 100644 --- a/tools/llvm-diff/llvm-diff.cpp +++ b/tools/llvm-diff/llvm-diff.cpp @@ -1,27 +1,36 @@ -#include -#include +//===-- llvm-diff.cpp - Module comparator command-line driver ---*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines the command-line driver for the difference engine. +// +//===----------------------------------------------------------------------===// -#include -#include -#include - -// Required to parse .ll files. -#include -#include +#include "DifferenceEngine.h" -// Required to parse .bc files. -#include -#include +#include "llvm/Instructions.h" +#include "llvm/LLVMContext.h" +#include "llvm/Module.h" +#include "llvm/Type.h" +#include "llvm/Assembly/Parser.h" +#include "llvm/Bitcode/ReaderWriter.h" +#include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/SmallVector.h" +#include "llvm/ADT/StringRef.h" +#include "llvm/Support/CommandLine.h" +#include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/MemoryBuffer.h" +#include "llvm/Support/raw_ostream.h" +#include "llvm/Support/SourceMgr.h" -#include -#include -#include -#include -#include -#include -#include +#include +#include -#include "DifferenceEngine.h" using namespace llvm; -- cgit v1.2.3