[VENTUS][RISCV][fix] Disable simple loop optimization to call llvm memset/memcpy intrinsics

This commit is contained in:
zhoujing 2023-07-11 16:26:49 +08:00
parent 5215f4da1e
commit e6ae0f7ac6
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ bool DisableLIRP::All;
static cl::opt<bool, true>
DisableLIRPAll("disable-" DEBUG_TYPE "-all",
cl::desc("Options to disable Loop Idiom Recognize Pass."),
cl::location(DisableLIRP::All), cl::init(false),
cl::location(DisableLIRP::All), cl::init(true),
cl::ReallyHidden);
bool DisableLIRP::Memset;