[llvm] [InstCombine] Fold icmp(constants[x]) when the range of x is given (PR #67093)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 22 04:02:27 PST 2023
================
@@ -22,9 +22,11 @@
#include "llvm/Analysis/Utils/Local.h"
#include "llvm/Analysis/VectorUtils.h"
#include "llvm/IR/ConstantRange.h"
+#include "llvm/IR/Constants.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/IntrinsicInst.h"
#include "llvm/IR/PatternMatch.h"
+#include "llvm/Support/Casting.h"
----------------
nikic wrote:
I doubt these includes are necessary.
https://github.com/llvm/llvm-project/pull/67093
More information about the llvm-commits
mailing list