-
Notifications
You must be signed in to change notification settings - Fork 538
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix time issue in FreeBSD (pow() bug)
- Loading branch information
Showing
3 changed files
with
65 additions
and
3 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/* | ||
* Copyright (c) 2000-2021 Stephen Williams ([email protected]) | ||
* Copyright (c) 2000-2023 Stephen Williams ([email protected]) | ||
* Copyright CERN 2012 / Stephen Williams ([email protected]) | ||
* | ||
* This source code is free software; you can redistribute it | ||
|
@@ -1189,7 +1189,7 @@ NetNet* PWire::elaborate_sig(Design*des, NetScope*scope) const | |
cerr << get_fileline() << ": debug: Create signal " << wtype; | ||
if (set_data_type_) | ||
cout << " " << *set_data_type_; | ||
cout << name_ << unpacked_dimensions << " in scope " | ||
cout << " " << name_ << unpacked_dimensions << " in scope " | ||
<< scope_path(scope) << endl; | ||
} | ||
|
||
|
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