diff options
Diffstat (limited to 'gcc/stmt.c')
-rw-r--r-- | gcc/stmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/stmt.c b/gcc/stmt.c index 6933599a89e..c7c6b2a084d 100644 --- a/gcc/stmt.c +++ b/gcc/stmt.c @@ -110,7 +110,7 @@ static int cost_table_initialized; /* Special care is needed because we allow -1, but TREE_INT_CST_LOW is unsigned. */ -#define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT)((I) + 1)] +#define COST_TABLE(I) cost_table_[(unsigned HOST_WIDE_INT) ((I) + 1)] /* Stack of control and binding constructs we are currently inside. |