Move some code under NDEBUG from D103135

This commit is contained in:
Arthur Eubanks
2021-06-14 11:39:12 -07:00
parent 66e2708205
commit cc8d32ae7d

View File

@@ -3848,8 +3848,10 @@ Error BitcodeReader::parseFunctionBody(Function *F) {
unsigned ModuleMDLoaderSize = MDLoader->size();
// Add all the function arguments to the value table.
#ifndef NDEBUG
unsigned ArgNo = 0;
FunctionType *FTy = FunctionTypes[F];
#endif
for (Argument &I : F->args()) {
assert(I.getType() == FTy->getParamType(ArgNo++) &&
"Incorrect fully specified type for Function Argument");