[llvm] [Delinearization] Add function for fixed size array without relying on GEP (PR #145050)
Sjoerd Meijer via llvm-commits
llvm-commits at lists.llvm.org
Tue Jul 1 05:39:47 PDT 2025
================
@@ -32,6 +33,11 @@ using namespace llvm;
#define DL_NAME "delinearize"
#define DEBUG_TYPE DL_NAME
+static cl::opt<bool> UseFixedSizeArrayHeuristic(
+ "delinearize-use-fixed-size-array-heuristic", cl::init(false), cl::Hidden,
+ cl::desc("When printing analysis, use the heuristic for fixed-size arrays "
----------------
sjoerdmeijer wrote:
Bit of a nitpick on the wording here: this heuristic is used more than just for printing, isn't it?
https://github.com/llvm/llvm-project/pull/145050
More information about the llvm-commits
mailing list