mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-03 08:25:32 +02:00
VVP cleanup of ',' at end of enum and missing extern "C"
This patch is similar to the previous patches and cleans up a single place in the vvp directory where an enum had a trailing ',' and a place where a C++ routine needed extern "C".
This commit is contained in:
+1
-1
@@ -67,7 +67,7 @@ enum operand_e {
|
||||
/* The operand is a second functor pointer */
|
||||
OA_FUNC_PTR2,
|
||||
/* The operand is a VPI handle */
|
||||
OA_VPI_PTR,
|
||||
OA_VPI_PTR
|
||||
};
|
||||
|
||||
struct opcode_table_s {
|
||||
|
||||
+1
-1
@@ -519,7 +519,7 @@ bool schedule_stopped(void)
|
||||
* These are the signal handling infrastructure. The SIGINT signal
|
||||
* leads to an implicit $stop.
|
||||
*/
|
||||
static void signals_handler(int)
|
||||
extern "C" void signals_handler(int)
|
||||
{
|
||||
schedule_stopped_flag = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user