-
Notifications
You must be signed in to change notification settings - Fork 541
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
19 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
%{ | ||
/* | ||
* Copyright (c) 2001-2021 Stephen Williams ([email protected]) | ||
* Copyright (c) 2001-2024 Stephen Williams ([email protected]) | ||
* | ||
* This source code is free software; you can redistribute it | ||
* and/or modify it in source code form under the terms of the GNU | ||
|
@@ -222,7 +222,7 @@ static char* trim_trailing_white(char*text, int trim) | |
return strdup(text); | ||
} | ||
|
||
int yywrap() | ||
int yywrap(void) | ||
{ | ||
return 1; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright (C) 2011-2021 Cary R. ([email protected]) | ||
* Copyright (C) 2011-2024 Cary R. ([email protected]) | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -23,7 +23,7 @@ | |
|
||
static unsigned need_ivl_top_module = 0; | ||
|
||
void emit_icarus_generated_top_module() | ||
void emit_icarus_generated_top_module(void) | ||
{ | ||
if (need_ivl_top_module) { | ||
fprintf(vlog_out, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright (C) 2011 Cary R. ([email protected]) | ||
* Copyright (C) 2011-2024 Cary R. ([email protected]) | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
|
@@ -246,7 +246,7 @@ void add_udp_to_list(ivl_udp_t udp) | |
udps[num_udps-1] = udp; | ||
} | ||
|
||
void emit_udp_list() | ||
void emit_udp_list(void) | ||
{ | ||
unsigned idx; | ||
for (idx = 0; idx < num_udps; idx += 1) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright (c) 2003-2020 Stephen Williams ([email protected]) | ||
* Copyright (c) 2003-2024 Stephen Williams ([email protected]) | ||
* | ||
* This source code is free software; you can redistribute it | ||
* and/or modify it in source code form under the terms of the GNU | ||
|
@@ -29,7 +29,7 @@ | |
|
||
static unsigned long word_alloc_mask = 0x0f; | ||
|
||
int allocate_word() | ||
int allocate_word(void) | ||
{ | ||
int res = 4; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -326,7 +326,7 @@ static char* strdupnew(char const *str) | |
|
||
%% | ||
|
||
int yywrap() | ||
int yywrap(void) | ||
{ | ||
return -1; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#ifndef IVL_vpi_priv_H | ||
#define IVL_vpi_priv_H | ||
/* | ||
* Copyright (c) 2001-2021 Stephen Williams ([email protected]) | ||
* Copyright (c) 2001-2024 Stephen Williams ([email protected]) | ||
* Copyright (c) 2016 CERN Michele Castellana ([email protected]) | ||
* | ||
* This source code is free software; you can redistribute it | ||
|
@@ -968,9 +968,9 @@ struct __vpiBinaryConst : public __vpiHandle { | |
|
||
vvp_vector4_t bits; | ||
/* TRUE if this constant is signed. */ | ||
int signed_flag :1; | ||
unsigned signed_flag :1; | ||
/* TRUE if this constant has an explicit size (i.e. 19'h0 vs. 'h0) */ | ||
int sized_flag :1; | ||
unsigned sized_flag :1; | ||
}; | ||
|
||
vpiHandle vpip_make_binary_const(unsigned wid, const char*bits); | ||
|