forked from ferrandi/PandA-bambu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Code refactoring * Build appimage workflow fix * APInt implementation update * Unlimited precision refactoring * Add simulation build define * Testbench FIFO handler update * AC channel support * General code refactoring
- Loading branch information
Showing
175 changed files
with
5,679 additions
and
5,958 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
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,10 +1,15 @@ | ||
#ifndef DEBUG_PRINT_HPP | ||
#define DEBUG_PRINT_HPP | ||
|
||
#ifdef PRINT_DBG_MSG | ||
#ifndef NDEBUG | ||
#define PRINT_DBG(stuff) llvm::errs() << stuff | ||
#define PRINT_DBG_VAR(stuff, var) \ | ||
PRINT_DBG(stuff); \ | ||
var->print(llvm::errs(), true); \ | ||
PRINT_DBG("\n") | ||
#else | ||
#define PRINT_DBG(stuff) | ||
#define PRINT_DBG_VAR(stuff, var) | ||
#endif | ||
|
||
#endif // DEBUG_PRINT_HPP |
Oops, something went wrong.