Skip to content
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

Rollup of 12 pull requests #49008

Merged
merged 31 commits into from
Mar 14, 2018
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
6701d90
Remove IdxSet::reset_to_empty
varkor Mar 6, 2018
89d1247
Remove IdxSet::each_bit
varkor Mar 6, 2018
f69a099
Remove IdxSet::elems
varkor Mar 6, 2018
c97c7bf
Add info message for -Wall command
Phlosioneer Mar 6, 2018
1246eef
Fix trailing whitespace
Phlosioneer Mar 6, 2018
f53f2fa
librustc_back: bump ISA level of mipsel targets to mips32r2
jcowgill Mar 8, 2018
fccaf25
librustc_back: enable fpxx on 32-bit hardfloat mips targets
jcowgill Mar 8, 2018
0711a7a
librustc_trans: add fp64 to mips features whitelist
jcowgill Mar 8, 2018
366ee85
Fix blink when main theme is selected
GuillaumeGomez Mar 7, 2018
c802204
big fences to show that ```rust is the same as ```
QuietMisdreavus Mar 12, 2018
da257b8
Add missing examples
GuillaumeGomez Mar 12, 2018
5a073d4
Move librustc_typeck READMEs to rustc guide
mark-i-m Mar 13, 2018
c1337cd
Update -Wall message based on feedback
Phlosioneer Mar 13, 2018
04442af
rustc: Don't invoke `lld` with an `@`-file
alexcrichton Mar 13, 2018
21a9770
Adds a test for #48070
sapphire-arches Mar 13, 2018
52bb99d
Move 48070 test to ui
sapphire-arches Mar 13, 2018
6d534d5
Clarify usage message for --remap-path-prefix.
jsgf Mar 13, 2018
63f654a
fix #48816 don't print help on indirect compiler ICE
alexheretic Mar 13, 2018
2f2e173
Speed up SVH computation by using Fingerprint::combine()
hrvolapeter Feb 23, 2018
4ea78d4
Rollup merge of #48765 - Phlosioneer:10234-wall-help-message, r=estebank
kennytm Mar 14, 2018
c65ee94
Rollup merge of #48831 - GuillaumeGomez:fix-theme-blink, r=QuietMisdr…
kennytm Mar 14, 2018
b5f102c
Rollup merge of #48840 - varkor:idxset-cleanup, r=pnkfelix
kennytm Mar 14, 2018
57f7678
Rollup merge of #48964 - QuietMisdreavus:picket-fence, r=GuillaumeGomez
kennytm Mar 14, 2018
c144fb7
Rollup merge of #48970 - GuillaumeGomez:doc-examples, r=QuietMisdreavus
kennytm Mar 14, 2018
ff80cde
Rollup merge of #48971 - mark-i-m:fix_readmes, r=nikomatsakis
kennytm Mar 14, 2018
088bf64
Rollup merge of #48981 - alexcrichton:lld-no-at-file, r=michaelwoerister
kennytm Mar 14, 2018
4074baf
Rollup merge of #48988 - bobtwinkles:add_48070_test, r=nikomatsakis
kennytm Mar 14, 2018
55e5ba3
Rollup merge of #48991 - jsgf:remap-path-prefix, r=estebank
kennytm Mar 14, 2018
6639b60
Rollup merge of #48966 - retep007:hir-fingerprint-optimization, r=mic…
kennytm Mar 14, 2018
508ffa3
Rollup merge of #48993 - alexheretic:fix-48816, r=michaelwoerister
kennytm Mar 14, 2018
beab2e6
Rollup merge of #48874 - jcowgill:mips-features, r=sanxiyn
kennytm Mar 14, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
librustc_trans: add fp64 to mips features whitelist
On 32-bit MIPS, enabling MSA requires also enabling the 64-bit FPU.
jcowgill committed Mar 8, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0711a7a72f5828825357a4eb5db70aedb2dabef4
2 changes: 1 addition & 1 deletion src/librustc_trans/llvm_util.rs
Original file line number Diff line number Diff line change
@@ -104,7 +104,7 @@ const POWERPC_WHITELIST: &'static [&'static str] = &["altivec",
"power8-vector", "power9-vector",
"vsx"];

const MIPS_WHITELIST: &'static [&'static str] = &["msa"];
const MIPS_WHITELIST: &'static [&'static str] = &["fp64", "msa"];

pub fn to_llvm_feature<'a>(sess: &Session, s: &'a str) -> &'a str {
let arch = if sess.target.target.arch == "x86_64" {