mirror of https://github.com/YosysHQ/abc.git
Fixes missing return in cec
Signed-off-by: Ethan Mahintorabi <ethanmoon@google.com>
This commit is contained in:
parent
d5e1a5d445
commit
964170d8dc
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue