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 | 61483f0e1f9e4e1fc69d76b4eccc9e1c9fbac13e (patch) | |
tree | 07464224244b847bbe921d3387d29252eb546630 /llvm/tools/llvm-diff/DifferenceEngine.h | |
parent | 0428a61e451c1d7c3b8385c1935955374a928884 (diff) | |
download | bcm5719-llvm-61483f0e1f9e4e1fc69d76b4eccc9e1c9fbac13e.tar.gz bcm5719-llvm-61483f0e1f9e4e1fc69d76b4eccc9e1c9fbac13e.zip |
Make the header self-contained and follow #include guidelines.
llvm-svn: 109774
Diffstat (limited to 'llvm/tools/llvm-diff/DifferenceEngine.h')
-rw-r--r-- | llvm/tools/llvm-diff/DifferenceEngine.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/llvm/tools/llvm-diff/DifferenceEngine.h b/llvm/tools/llvm-diff/DifferenceEngine.h index 9d0ebecc53d..bc331317344 100644 --- a/llvm/tools/llvm-diff/DifferenceEngine.h +++ b/llvm/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 { |