diff options
author | Fangrui Song <maskray@google.com> | 2019-02-21 07:42:31 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-02-21 07:42:31 +0000 |
commit | ef5987592e72f28234af13270499945628c15228 (patch) | |
tree | 7de8dc2db6d2e05279a38bf2321faf380eee89e0 /llvm/tools/llvm-diff | |
parent | 77ac7028b4d4702708afb4df720c88b79f75aa36 (diff) | |
download | bcm5719-llvm-ef5987592e72f28234af13270499945628c15228.tar.gz bcm5719-llvm-ef5987592e72f28234af13270499945628c15228.zip |
Fix some include order and file headers issues. NFC
llvm-svn: 354550
Diffstat (limited to 'llvm/tools/llvm-diff')
-rw-r--r-- | llvm/tools/llvm-diff/DiffConsumer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-diff/DiffConsumer.cpp b/llvm/tools/llvm-diff/DiffConsumer.cpp index f2a2e68b2a2..b797143bde1 100644 --- a/llvm/tools/llvm-diff/DiffConsumer.cpp +++ b/llvm/tools/llvm-diff/DiffConsumer.cpp @@ -12,8 +12,8 @@ #include "DiffConsumer.h" #include "llvm/IR/Instructions.h" -#include "llvm/Support/ErrorHandling.h" #include "llvm/Support/Debug.h" +#include "llvm/Support/ErrorHandling.h" using namespace llvm; |