mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Fix clang compiler warning
Signed-off-by: Claire Wolf <claire@symbioticeda.com>
This commit is contained in:
parent
ebfdf61eb9
commit
8ec3b6db1c
|
@ -157,10 +157,10 @@ extern Tcl_Obj *Tcl_ObjSetVar2(Tcl_Interp *interp, Tcl_Obj *part1Ptr, Tcl_Obj *p
|
||||||
|
|
||||||
#if __cplusplus >= 201703L
|
#if __cplusplus >= 201703L
|
||||||
# define YS_FALLTHROUGH [[fallthrough]];
|
# define YS_FALLTHROUGH [[fallthrough]];
|
||||||
#elif defined(__GNUC__)
|
|
||||||
# define YS_FALLTHROUGH [[gnu::fallthrough]];
|
|
||||||
#elif defined(__clang__)
|
#elif defined(__clang__)
|
||||||
# define YS_FALLTHROUGH [[clang::fallthrough]];
|
# define YS_FALLTHROUGH [[clang::fallthrough]];
|
||||||
|
#elif defined(__GNUC__)
|
||||||
|
# define YS_FALLTHROUGH [[gnu::fallthrough]];
|
||||||
#else
|
#else
|
||||||
# define YS_FALLTHROUGH
|
# define YS_FALLTHROUGH
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue