We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10cbc37 commit 483bec7Copy full SHA for 483bec7
src/etc/platform-intrinsics/generator.py
@@ -32,7 +32,6 @@ def platform_prefix(self):
32
33
class IntrinsicSet(object):
34
def __init__(self, platform, json):
35
-
36
self._llvm_prefix = json['llvm_prefix']
37
self._type_info = json['number_info']
38
self._intrinsics = json['intrinsics']
src/librustc_driver/target_features.rs
@@ -30,12 +30,15 @@ const ARM_WHITELIST: &'static [&'static str] = &[
30
const X86_WHITELIST: &'static [&'static str] = &[
31
"avx\0",
"avx2\0",
+ "bmi\0",
+ "bmi2\0",
"sse\0",
"sse2\0",
"sse3\0",
"sse4.1\0",
39
"sse4.2\0",
40
"ssse3\0",
41
+ "tbm\0",
42
];
43
44
/// Add `target_feature = "..."` cfgs for a variety of platform
0 commit comments