diff options
author | John McCall <rjmccall@apple.com> | 2010-07-29 18:08:23 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-07-29 18:08:23 +0000 |
commit | 73b21b738ee74f33f16ca6bf88bd4344b3fca0a9 (patch) | |
tree | 32ef93a4d7aa99f308cd68b6d4000e0ff8c3a3bc /tools/llvm-diff/DifferenceEngine.cpp | |
parent | 618898e933c6350f1f7976370f3822c086d70f0c (diff) | |
download | external_llvm-73b21b738ee74f33f16ca6bf88bd4344b3fca0a9.zip external_llvm-73b21b738ee74f33f16ca6bf88bd4344b3fca0a9.tar.gz external_llvm-73b21b738ee74f33f16ca6bf88bd4344b3fca0a9.tar.bz2 |
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
Diffstat (limited to 'tools/llvm-diff/DifferenceEngine.cpp')
-rw-r--r-- | tools/llvm-diff/DifferenceEngine.cpp | 36 |
1 files changed, 17 insertions, 19 deletions
diff --git a/tools/llvm-diff/DifferenceEngine.cpp b/tools/llvm-diff/DifferenceEngine.cpp index 55b1a36..7436d1e 100644 --- a/tools/llvm-diff/DifferenceEngine.cpp +++ b/tools/llvm-diff/DifferenceEngine.cpp @@ -7,30 +7,28 @@ // //===----------------------------------------------------------------------===// // -// This header defines the interface to the LLVM difference engine, -// which structurally compares functions within a module. +// This header defines the implementation of the LLVM difference +// engine, which structurally compares global values within a module. // //===----------------------------------------------------------------------===// -#include <utility> - -#include <llvm/ADT/DenseMap.h> -#include <llvm/ADT/DenseSet.h> -#include <llvm/ADT/SmallVector.h> -#include <llvm/ADT/StringRef.h> -#include <llvm/ADT/StringSet.h> - -#include <llvm/Module.h> -#include <llvm/Function.h> -#include <llvm/Instructions.h> -#include <llvm/Support/CFG.h> +#include "DifferenceEngine.h" -#include <llvm/Support/raw_ostream.h> -#include <llvm/Support/type_traits.h> -#include <llvm/Support/ErrorHandling.h> -#include <llvm/Support/CallSite.h> +#include "llvm/Function.h" +#include "llvm/Instructions.h" +#include "llvm/Module.h" +#include "llvm/ADT/DenseMap.h" +#include "llvm/ADT/DenseSet.h" +#include "llvm/ADT/SmallVector.h" +#include "llvm/ADT/StringRef.h" +#include "llvm/ADT/StringSet.h" +#include "llvm/Support/CallSite.h" +#include "llvm/Support/CFG.h" +#include "llvm/Support/ErrorHandling.h" +#include "llvm/Support/raw_ostream.h" +#include "llvm/Support/type_traits.h" -#include "DifferenceEngine.h" +#include <utility> using namespace llvm; |