79479901

Date: 2025-03-02 23:27:33
Score: 0.5
Natty:
Report link

How can I then tell avr-gcc that all registers but "r0" are clobbered?
In particular how do I tell it that X,Y,Z are clobbered?

For any register other than Y, __tmp_reg__ and __zero_reg_, add respective registers to the clobber list. For example, in order to clobber r30, you would

___asm ("..." ::: "r30");
// or
___asm ("..." ::: "30");

For the ramaining registers:

Reasons:
  • Blacklisted phrase (0.5): How can I
  • Blacklisted phrase (1): how do I
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): How can I the
  • High reputation (-1):
Posted by: emacs drives me nuts