Ruby 3.3.7p123 (2025-01-15 revision be31f993d7fa0219d85f7b3c694d454da4ecc10b)
cold.h
Go to the documentation of this file.
1#ifndef RBIMPL_ATTR_COLD_H /*-*-C++-*-vi:se ft=cpp:*/
2#define RBIMPL_ATTR_COLD_H
25
27#if RBIMPL_COMPILER_IS(SunPro)
28# /* Recent SunPro has __has_attribute, and is broken. */
29# /* It reports it has attribute cold, reality isn't (warnings issued). */
30# define RBIMPL_ATTR_COLD() /* void */
31#elif RBIMPL_HAS_ATTRIBUTE(cold)
32# define RBIMPL_ATTR_COLD() __attribute__((__cold__))
33#else
34# define RBIMPL_ATTR_COLD() /* void */
35#endif
36
37#endif /* RBIMPL_ATTR_COLD_H */
Defines RBIMPL_HAS_ATTRIBUTE.
Defines RBIMPL_COMPILER_IS.