diff options
| author | Aiden Gall <aiden@aidengall.xyz> | 2025-10-14 19:24:44 +0100 |
|---|---|---|
| committer | Aiden Gall <aiden@aidengall.xyz> | 2025-10-14 19:24:44 +0100 |
| commit | f9660f90394bae4e63d20005c592fd96ef967d0d (patch) | |
| tree | ea84912fa92c961de3517475f6789880c2aba671 | |
| parent | 7fde27c6a2bf4adeb6e26495fc22115f7714de5d (diff) | |
use __noinline__ to avoid possible name collision
| -rw-r--r-- | tco.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ #if defined(__GNUC__) || defined(__clang__) -#define coroutine __attribute__((noinline)) +#define coroutine __attribute__((__noinline__)) #else #define coroutine #endif |
