Added support for __uint128 and __uint128_t types. #92
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
edit:
This is a PR for #89.This is a second PR related to supporting__uint128and__uint128_t. I somehow missed #89 was a PR and not just a bug report. The PRs are similar.This PR resolves the issue I had when using
language-cviac2hsto build a package on a computer with an Apple M1 processor. More information is provided in #89.Please note that tests for
language-care failing for me before and after applying this patch.This PR adds
__unint128and__unint128_tas tokens and updates the parser grammar to include__unint128as abasic_type_name. I also updated thetokenlist.txtfile and used it to generate the token description located inLexer.x. There was a little bit of manual editing required in order to add back the condition on theIEC_60559_TYPES_EXTsymbol for the IEC 60559 floats.