-
Notifications
You must be signed in to change notification settings - Fork 44
fix(data): fix field names to be closer to operands #872
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
base: main
Are you sure you want to change the base?
fix(data): fix field names to be closer to operands #872
Conversation
799b45e
to
dde8bf8
Compare
@dhower-qc , any clue why the CI tests are failing? They fail without the updated instruction appendix commit as well, so just the first commit is a problem, but there's not a ton there... some deleted and created files causing issues? BTW, the "prettier" pre-commit hook made me make the list of unacceptable values for |
In this case might want to do this: https://prettier.io/docs/ignore#yaml |
Oddly, I can provoke the error by reverting everything, then just removing
Is there some sort of cache in play? |
dde8bf8
to
604abde
Compare
The error message is a bit cryptic because it manifests as a Sorbet type error, but it's caused by the fact a $ref wasn't resolved. Presumably, that happens because you removed a file that was the target of a ref. |
Back to your changes, I suspect you are seeing this because the instructions you are changing are "hints" of may-be-ops. So there is going to be a reference in their definition that needs to be updated. |
27595ba
to
5ff0704
Compare
- `dret`, `mnret`, and `sctrclr` take no operands. - `sspush` and `sspopchk` are each single mnemonics that take a very restricted set of operand values. Also include a bit of documentation. - `vaeskf1.vi`, `vaeskf2.vi`, `vsm3c.vi`, `vsm4k.vi`, `vwsll.vi`: renamed field to match operand.
5ff0704
to
2bd5246
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #872 +/- ##
=======================================
Coverage 43.30% 43.30%
=======================================
Files 10 10
Lines 4787 4787
Branches 1298 1298
=======================================
Hits 2073 2073
Misses 2714 2714
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
dret
,mnret
, andsctrclr
take no operands.sspush
andsspopchk
are each single mnemonics that take a veryrestricted set of operand values.
Also include a bit of documentation.
vaeskf1.vi
,vaeskf2.vi
,vsm3c.vi
,vsm4k.vi
,vwsll.vi
:renamed field to match operand.