File tree Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Expand file tree Collapse file tree 1 file changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -6357,13 +6357,8 @@ init_emit_once (void)
6357
6357
/* Don't use gen_rtx_CONST_INT here since gen_rtx_CONST_INT in this case
6358
6358
tries to use these variables. */
6359
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
- }
6360
+ const_int_rtx[i + MAX_SAVED_CONST_INT] =
6361
+ gen_rtx_raw_CONST_INT (VOIDmode, (HOST_WIDE_INT) i);
6367
6362
6368
6363
if (STORE_FLAG_VALUE >= - MAX_SAVED_CONST_INT
6369
6364
&& STORE_FLAG_VALUE <= MAX_SAVED_CONST_INT)
You can’t perform that action at this time.
0 commit comments