Implement cent/ucent data types.#1120
Closed
redstar wants to merge 11 commits intoldc-developers:masterfrom
Closed
Implement cent/ucent data types.#1120redstar wants to merge 11 commits intoldc-developers:masterfrom
redstar wants to merge 11 commits intoldc-developers:masterfrom
Conversation
Member
Author
|
This one was accidental closed because it was against merge-2.067 branch. |
34f41c7 to
1fbd804
Compare
Member
Author
|
Now updated for 0.17.0 (v2.068.2). |
LLVM 3.9: Add new library globalisel
This PR removes the command line option which adds the pass names as additional command line options. This code prevents compiling for AArch64 (since LLVM 3.7) and ARM (since LLVM 3.8). Recommendation on LLVM list was to use the PassNameParser only in test tools but not in a production compiler.
This is still not perfect but already fixes some test failures.
Remove PassNameParser (may be breaking some command lines!)
This is a first try at implementing the data types cent and ucent. All changes are wrapped in #if WANT_CENT .. #endif. It takes advantage of the GCC builtin type __int128 and is currently only enabled if compiled with gcc. As soon as this is stable it should go upstream, too.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is a first try at implementing the data types cent and ucent.
All changes are wrapped in #if WANT_CENT .. #endif. It takes
advantage of the GCC builtin type __int128 and is currently only
enabled if compiled with gcc.
As soon as this is stable it should go upstream, too.