-
Notifications
You must be signed in to change notification settings - Fork 13k
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
Add -C target-feature
to all functions
#50188
Conversation
r? @pnkfelix (rust_highfive has picked a reviewer for you, use r? to override) |
r? @eddyb |
@bors r+ |
📌 Commit 27f99d9 has been approved by |
⌛ Testing commit 27f99d9edc90eebd7b215e53a073ed92c8bc8031 with merge de50959da437473d1e530cf2e7ab4a394ff3b89a... |
💔 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
@bors: r=eddyb |
📌 Commit 6223711 has been approved by |
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
☀️ Test successful - status-appveyor, status-travis |
Previously the features specified to LLVM via
-C target-feature
were onlyreflected in the
TargetMachine
but this change also reflects these and thebase features inside each function itself. This change matches clang and...
Closes rust-lang/stdarch#427