3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-16 04:05:42 +00:00

Merge branch 'YosysHQ:main' into main

This commit is contained in:
Akash Levy 2025-04-03 10:48:42 -07:00 committed by GitHub
commit 439d859bba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 255 additions and 27 deletions

View file

@ -128,6 +128,12 @@
# error "C++17 or later compatible compiler is required"
#endif
#if defined(__has_cpp_attribute) && __has_cpp_attribute(gnu::cold)
# define YS_COLD [[gnu::cold]]
#else
# define YS_COLD
#endif
#include "kernel/io.h"
YOSYS_NAMESPACE_BEGIN