Add -C target-feature to all functions#50188
Merged
bors merged 1 commit intorust-lang:masterfrom Apr 29, 2018
Merged
Conversation
Contributor
|
r? @pnkfelix (rust_highfive has picked a reviewer for you, use r? to override) |
This was referenced Apr 23, 2018
Member
Author
|
r? @eddyb |
Member
|
@bors r+ |
Collaborator
|
📌 Commit 27f99d9 has been approved by |
Collaborator
|
⌛ Testing commit 27f99d9edc90eebd7b215e53a073ed92c8bc8031 with merge de50959da437473d1e530cf2e7ab4a394ff3b89a... |
Collaborator
|
💔 Test failed - status-appveyor |
Previously the features specified to LLVM via `-C target-feature` were only reflected in the `TargetMachine` but this change *also* reflects these and the base features inside each function itself. This change matches clang and... Closes rust-lang/stdarch#427
27f99d9 to
6223711
Compare
Member
Author
|
@bors: r=eddyb |
Collaborator
|
📌 Commit 6223711 has been approved by |
Collaborator
bors
added a commit
that referenced
this pull request
Apr 28, 2018
Add `-C target-feature` to all functions Previously the features specified to LLVM via `-C target-feature` were only reflected in the `TargetMachine` but this change *also* reflects these and the base features inside each function itself. This change matches clang and... Closes rust-lang/stdarch#427
Collaborator
|
☀️ Test successful - status-appveyor, status-travis |
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.
Previously the features specified to LLVM via
-C target-featurewere onlyreflected in the
TargetMachinebut this change also reflects these and thebase features inside each function itself. This change matches clang and...
Closes rust-lang/stdarch#427