Remove bitchar_to_idx() function in tgt-vvp/vvp_process.c
This function is no longer used and was likely replaced with a
different scheme, so serves no useful purpose.
(cherry picked from commit 8dfe9961c8)
This commit is contained in:
parent
c36e1f0703
commit
c781db5779
|
|
@ -42,22 +42,6 @@ static unsigned transient_id = 0;
|
|||
* executable code for the processes.
|
||||
*/
|
||||
|
||||
unsigned bitchar_to_idx(char bit)
|
||||
{
|
||||
switch (bit) {
|
||||
case '0':
|
||||
return 0;
|
||||
case '1':
|
||||
return 1;
|
||||
case 'x':
|
||||
return 2;
|
||||
case 'z':
|
||||
return 3;
|
||||
default:
|
||||
assert(0);
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* These functions handle the blocking assignment. Use the %set
|
||||
|
|
|
|||
Loading…
Reference in New Issue