-
Notifications
You must be signed in to change notification settings - Fork 79
fix: skip fence.tso on llvm-test #687
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
Conversation
|
My preference would be to add just a bit more information in the commit message regarding what "differ" means. |
|
@ThinkOpenly ok, I'll add it |
…uction differ fence.tso is a fence instruction and the ISA states it shall be all zeros. Compilers like LLVM take this literally and only implement it all constant, while the ISA leaves some fields open to newer implementation approaches. When we check UDB version that refers to the ISA vs LLVM, the test fails because of the different view on the subject. Ad-hoc skip the LLVM test for fence.tso. Signed-off-by: Afonso Oliveira <[email protected]>
fba4c1f to
0396da3
Compare
|
@ThinkOpenly done - hopefully :) |
You're right, it should be added. The commit template mentions 80 lines, but not the contributing guide. |


since compiler and ISA view of the instruction differ
Fixes #460