Fix an unused variable warning in non-asserts builds.

llvm-svn: 304778
This commit is contained in:
Chandler Carruth 2017-06-06 07:49:34 +00:00
parent 1124001c68
commit 6c41bb1bdf
1 changed files with 1 additions and 0 deletions

View File

@ -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");