[llvm] 0347f3e - TruncInstCombine.cpp - fix header include ordering to fix llvm-include-order clang-tidy warning. NFCI.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri Oct 2 09:25:26 PDT 2020
Author: Simon Pilgrim
Date: 2020-10-02T17:25:12+01:00
New Revision: 0347f3ea720b16305d77449f9868255496e0b27c
URL: https://github.com/llvm/llvm-project/commit/0347f3ea720b16305d77449f9868255496e0b27c
DIFF: https://github.com/llvm/llvm-project/commit/0347f3ea720b16305d77449f9868255496e0b27c.diff
LOG: TruncInstCombine.cpp - fix header include ordering to fix llvm-include-order clang-tidy warning. NFCI.
Added:
Modified:
llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp b/llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
index de6193835938..e9418175c842 100644
--- a/llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
+++ b/llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
@@ -31,8 +31,8 @@
#include "llvm/Analysis/TargetLibraryInfo.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/Dominators.h"
-#include "llvm/IR/Instruction.h"
#include "llvm/IR/IRBuilder.h"
+#include "llvm/IR/Instruction.h"
using namespace llvm;
More information about the llvm-commits
mailing list