forked from OSchip/llvm-project
Fix an unused variable warning in non-asserts builds.
llvm-svn: 304778
This commit is contained in:
parent
1124001c68
commit
6c41bb1bdf
|
@ -68,6 +68,7 @@ void runChecks(
|
|||
|
||||
MachineModuleInfo MMI(TM);
|
||||
bool Res = MParser->parseMachineFunctions(*M, MMI);
|
||||
(void)Res;
|
||||
assert(!Res && "Couldn't parse MIR functions");
|
||||
|
||||
auto F = M->getFunction("sizes");
|
||||
|
|
Loading…
Reference in New Issue