summaryrefslogtreecommitdiff
path: root/tools/llvm-diff/DifferenceEngine.h
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-07-29 18:08:23 +0000
committerJohn McCall <rjmccall@apple.com>2010-07-29 18:08:23 +0000
commit73b21b738ee74f33f16ca6bf88bd4344b3fca0a9 (patch)
tree32ef93a4d7aa99f308cd68b6d4000e0ff8c3a3bc /tools/llvm-diff/DifferenceEngine.h
parent618898e933c6350f1f7976370f3822c086d70f0c (diff)
downloadllvm-73b21b738ee74f33f16ca6bf88bd4344b3fca0a9.tar.gz
llvm-73b21b738ee74f33f16ca6bf88bd4344b3fca0a9.tar.bz2
llvm-73b21b738ee74f33f16ca6bf88bd4344b3fca0a9.tar.xz
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.h')
-rw-r--r--tools/llvm-diff/DifferenceEngine.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/llvm-diff/DifferenceEngine.h b/tools/llvm-diff/DifferenceEngine.h
index 9d0ebecc53..bc33131734 100644
--- a/tools/llvm-diff/DifferenceEngine.h
+++ b/tools/llvm-diff/DifferenceEngine.h
@@ -15,17 +15,19 @@
#ifndef _LLVM_DIFFERENCE_ENGINE_H_
#define _LLVM_DIFFERENCE_ENGINE_H_
+#include "llvm/ADT/SmallVector.h"
+#include "llvm/ADT/StringRef.h"
+
#include <utility>
-#include <llvm/ADT/SmallVector.h>
-#include <llvm/ADT/StringRef.h>
namespace llvm {
+ class Function;
+ class GlobalValue;
+ class Instruction;
class LLVMContext;
class Module;
- class Function;
class Twine;
class Value;
- class GlobalValue;
/// A class for performing structural comparisons of LLVM assembly.
class DifferenceEngine {