From 2959ae451e3ad6bbb3c1381864c0221e9fdb62f4 Mon Sep 17 00:00:00 2001 From: FIRM Projekt Account Date: Tue, 27 Dec 2005 11:11:38 +0000 Subject: [PATCH] workaround for GCC's overflow bug [r7146] --- ir/tr/type.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/tr/type.h b/ir/tr/type.h index 23193577a..eefe552d6 100644 --- a/ir/tr/type.h +++ b/ir/tr/type.h @@ -819,7 +819,7 @@ typedef enum { cc_stdcall_set = cc_callee_clear_stk, /**< stdcall calling convention */ cc_fastcall_set = cc_reg_param|cc_callee_clear_stk, /**< fastcall calling convention */ - cc_bits = 0xFF000000 /**< the calling convention bits */ + cc_bits = (0xFF << 24) /**< the calling convention bits */ } calling_convention; /** return the default calling convention for method types */ -- 2.20.1