Skip to content

Commit

Permalink
llvm-reduce: Fix build
Browse files Browse the repository at this point in the history
Fix build after e49f8ee
  • Loading branch information
arsenm committed Dec 20, 2022
1 parent 6bdf378 commit 49f80a5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions llvm/tools/llvm-reduce/deltas/RunIRPasses.cpp
Expand Up @@ -20,8 +20,7 @@ static cl::opt<std::string> PassPipeline(
"ir-passes",
cl::desc("A textual description of the pass pipeline, same as "
"what's passed to `opt -passes`."),
cl::init(
"function(sroa,instcombine,gvn,simplifycfg,infer-address-spaces)"));
cl::init("function(sroa,instcombine,gvn,simplifycfg,infer-address-spaces)"),
cl::cat(LLVMReduceOptions));

static void runPasses(Oracle &O, Module &Program) {
Expand Down

0 comments on commit 49f80a5

Please sign in to comment.