Skip to content

Commit 92e211a

Browse files
davidtgoldblattDavid Goldblatt
andauthored
[BasicAA] Enable separate storage hints by default (llvm#76864)
As requested in llvm#76770 (review) A few months of experimentation in a large codebase did not reveal any significant build speed regressions, and b07bf16 speeds up hint lookup even further. Co-authored-by: David Goldblatt <[email protected]>
1 parent ddd6acd commit 92e211a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Analysis/BasicAliasAnalysis.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static cl::opt<bool> EnableRecPhiAnalysis("basic-aa-recphi", cl::Hidden,
6969
cl::init(true));
7070

7171
static cl::opt<bool> EnableSeparateStorageAnalysis("basic-aa-separate-storage",
72-
cl::Hidden, cl::init(false));
72+
cl::Hidden, cl::init(true));
7373

7474
/// SearchLimitReached / SearchTimes shows how often the limit of
7575
/// to decompose GEPs is reached. It will affect the precision

0 commit comments

Comments
 (0)