We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test failed from 13-20.
The error message is incorrect register %r8' used with l' suffix
incorrect register %r8' used with l' suffix
It seems that movzbl can only use 32-bit registers?
int cgloadglob(int id) { //... case P_INT: fprintf(Outfile, "\tmovzbl\t%s(\%%rip), %s\n", Gsym[id].name, reglist[r]); //...
should reglist[r] be changed to dreglist[r] ? The test passed when I made this change
reglist[r]
dreglist[r]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Test failed from 13-20.
The error message is
incorrect register %r8' used with l' suffix
It seems that movzbl can only use 32-bit registers?
should
reglist[r]
be changed todreglist[r]
?The test passed when I made this change
The text was updated successfully, but these errors were encountered: