Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make modelConst modelArray and UsePreCompFieldSensitive to be non-const #1676

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions svf/include/Util/Options.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class Options
static const Option<bool> CallGraphDotGraph;
static const Option<bool> PAGPrint;
static const Option<u32_t> IndirectCallLimit;
static const Option<bool> UsePreCompFieldSensitive;
static Option<bool> UsePreCompFieldSensitive;
static const Option<bool> EnableAliasCheck;
static const Option<bool> EnableTypeCheck;
static const Option<bool> EnableThreadCallGraph;
Expand Down Expand Up @@ -184,8 +184,8 @@ class Options

// SymbolTableInfo.cpp
static const Option<bool> LocMemModel;
static const Option<bool> ModelConsts;
static const Option<bool> ModelArrays;
static Option<bool> ModelConsts;
static Option<bool> ModelArrays;
static const Option<bool> CyclicFldIdx;
static const Option<bool> SymTabPrint;

Expand Down
6 changes: 3 additions & 3 deletions svf/lib/Util/Options.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ const Option<u32_t> Options::IndirectCallLimit(
50000
);

const Option<bool> Options::UsePreCompFieldSensitive(
Option<bool> Options::UsePreCompFieldSensitive(
"pre-field-sensitive",
"Use pre-computed field-sensitivity for later analysis",
true
Expand Down Expand Up @@ -542,13 +542,13 @@ const Option<bool> Options::SVFMain(
false
);

const Option<bool> Options::ModelConsts(
Option<bool> Options::ModelConsts(
"model-consts",
"Modeling individual constant objects",
false
);

const Option<bool> Options::ModelArrays(
Option<bool> Options::ModelArrays(
"model-arrays",
"Modeling Gep offsets for array accesses",
false
Expand Down
Loading