We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 801fefd commit a07a2b0Copy full SHA for a07a2b0
gcc/emit-rtl.cc
@@ -6357,13 +6357,8 @@ init_emit_once (void)
6357
/* Don't use gen_rtx_CONST_INT here since gen_rtx_CONST_INT in this case
6358
tries to use these variables. */
6359
for (i = - MAX_SAVED_CONST_INT; i <= MAX_SAVED_CONST_INT; i++)
6360
- {
6361
- // Do not initialize twice the constants because there are used elsewhere
6362
- // and libgccjit execute this function twice.
6363
- if (const_int_rtx[i + MAX_SAVED_CONST_INT] == NULL)
6364
- const_int_rtx[i + MAX_SAVED_CONST_INT] =
6365
- gen_rtx_raw_CONST_INT (VOIDmode, (HOST_WIDE_INT) i);
6366
- }
+ const_int_rtx[i + MAX_SAVED_CONST_INT] =
+ gen_rtx_raw_CONST_INT (VOIDmode, (HOST_WIDE_INT) i);
6367
6368
if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
6369
&& STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
0 commit comments