-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
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
xtensa: fix inline assembly of rsil in exception code for XCC #56790
Conversation
Compilation still fails with the same error message as shared in |
24bd23d
to
5175531
Compare
Can you try the latest one? I removed the last colon of the line. |
5175531 fixes the compilation issue with |
Can you please add a |
Commit 4084726 added inline assembly to lock interrupt. However, XCC doesn't like the syntax using STRINGIFY, and also an empty clobber section. So parameterize the second argument to rsil, and remove the last colon. Signed-off-by: Daniel Leung <[email protected]>
5175531
to
7faed58
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested to work with the XCC RG-2017.8 toolchain we use for Intel cAVS2.5 platforms.
XCC doesn't like the syntax using STRINGIFY. So parameterize the second argument to rsil.