Skip to content

Commit 292546d

Browse files
committed
remove some more nolints
1 parent 25754a0 commit 292546d

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

lib/PhasarPass/RegisterPasses.cpp

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,57 +16,57 @@
1616
using namespace psr;
1717
using namespace std;
1818

19-
llvm::cl::OptionCategory PhASARCategory("PhASAR Options", // NOLINT
19+
llvm::cl::OptionCategory PhASARCategory("PhASAR Options",
2020
"Configure the PhASAR framework");
2121

22-
std::string psr::DataFlowAnalysis; // NOLINT
23-
static llvm::cl::opt<std::string, true> SetDataFlowAnalysis( // NOLINT
22+
std::string psr::DataFlowAnalysis;
23+
static llvm::cl::opt<std::string, true> SetDataFlowAnalysis(
2424
"data-flow", llvm::cl::desc("Set the data-flow analysis to be run"),
2525
llvm::cl::location(DataFlowAnalysis), llvm::cl::init("ifds-solvertest"),
2626
llvm::cl::cat(PhASARCategory));
2727

28-
std::string psr::PointerAnalysis; // NOLINT
29-
static llvm::cl::opt<std::string, true> SetPointerAnalysis( // NOLINT
28+
std::string psr::PointerAnalysis;
29+
static llvm::cl::opt<std::string, true> SetPointerAnalysis(
3030
"pointer", llvm::cl::desc("Set the points-to analysis to be run"),
3131
llvm::cl::location(PointerAnalysis), llvm::cl::init("cflsteens"),
3232
llvm::cl::cat(PhASARCategory));
3333

34-
std::string psr::CallGraphAnalysis; // NOLINT
35-
static llvm::cl::opt<std::string, true> SetCallGraphAnalysis( // NOLINT
34+
std::string psr::CallGraphAnalysis;
35+
static llvm::cl::opt<std::string, true> SetCallGraphAnalysis(
3636
"call-graph", llvm::cl::desc("Set the call-graph algorithm to be run"),
3737
llvm::cl::location(CallGraphAnalysis), llvm::cl::init("OTF"),
3838
llvm::cl::cat(PhASARCategory));
3939

40-
std::vector<std::string> psr::EntryPoints; // NOLINT
40+
std::vector<std::string> psr::EntryPoints;
4141
static llvm::cl::list<std::string, std::vector<std::string>>
42-
SetEntryPoints("entry-points", // NOLINT
42+
SetEntryPoints("entry-points",
4343
llvm::cl::desc("Set the analysis's entry points"),
4444
llvm::cl::location(EntryPoints),
4545
llvm::cl::cat(PhASARCategory), llvm::cl::CommaSeparated);
4646

47-
std::string psr::PammOutputFile; // NOLINT
48-
static llvm::cl::opt<std::string, true> SetPammOutputFile( // NOLINT
47+
std::string psr::PammOutputFile;
48+
static llvm::cl::opt<std::string, true> SetPammOutputFile(
4949
"pamm-out", llvm::cl::desc("Filename for PAMM's gathered data"),
5050
llvm::cl::location(PammOutputFile), llvm::cl::init("PAMM_data.json"),
5151
llvm::cl::cat(PhASARCategory));
5252

53-
bool psr::PrintEdgeRecorder; // NOLINT
53+
bool psr::PrintEdgeRecorder;
5454
static llvm::cl::opt<bool, true>
55-
SetPrintEdgeRecorder("printedgerec", // NOLINT
55+
SetPrintEdgeRecorder("printedgerec",
5656
llvm::cl::desc("Print the IFDS/IDE edge recorder"),
5757
llvm::cl::location(PrintEdgeRecorder),
5858
llvm::cl::init(false), llvm::cl::cat(PhASARCategory));
5959

60-
bool psr::InitLogger; // NOLINT
61-
static llvm::cl::opt<bool, true> SetInitializeLogger( // NOLINT
60+
bool psr::InitLogger;
61+
static llvm::cl::opt<bool, true> SetInitializeLogger(
6262
"init-logger",
6363
llvm::cl::desc("Initialize the logger (caution: very expensive)"),
6464
llvm::cl::location(InitLogger), llvm::cl::init(false),
6565
llvm::cl::cat(PhASARCategory));
6666

67-
bool psr::DumpResults; // NOLINT
67+
bool psr::DumpResults;
6868
static llvm::cl::opt<bool, true>
69-
SetDumpResults("dump-results", // NOLINT
69+
SetDumpResults("dump-results",
7070
llvm::cl::desc("Dump the analysis results to stdout"),
7171
llvm::cl::location(DumpResults), llvm::cl::init(true),
7272
llvm::cl::cat(PhASARCategory));

0 commit comments

Comments
 (0)