Some are okay, some are not. Yosys by default does not remove the nets that were connected to DFFs. It does so in "clean" command. In this example this is most likely cause.
Not all "is used but has no driver warnings" are caused by the same thing. Go all over the warnings, and make sure you have no issues.
E.g. Make sure you have no dangling nets, that the same flip flop is not assigned somewhere else, and no cells are optimized away.
In the given piece of code this can be caused by a lot of things:
clock is stuck OR
int_wr_data[0] and reset_write and reset is stuck at some value.
OR it's assigned somewhere else too.
OR the output reset_reg is not used.
Again, in the particular example you gave, most likely it's caused by DFF synthesis, not the above mentioned reasons.