You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
short foo(unsigned char *data, unsigned long a, unsigned char b)
{
short var = a / 2 + b;
for (unsigned char i = 0; i < 8; i += 2)
{
var += data[i];
}
return var;
}
Results in error: ran out of registers during register allocation when any optimization level is used.
The text was updated successfully, but these errors were encountered:
This code:
Results in
error: ran out of registers during register allocation
when any optimization level is used.The text was updated successfully, but these errors were encountered: