Fixes missing return in cec

Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com>
This commit is contained in:
Ethan Mahintorabi 2025-02-10 05:44:31 +00:00
parent d5e1a5d445
commit 964170d8dc
No known key found for this signature in database
GPG Key ID: 824E41B920BEA252
1 changed files with 3 additions and 1 deletions

View File

@ -3468,7 +3468,9 @@ int check_implication( Gia_Man_t * p, int ObjId , int validBit , int fanoutValue
}
assert(0);
// In C++ assert(0) doesn't count as a proper exit.
// needs to return a value to compile.
return -1;
}