mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
fixed a re-format due to removed chain call
This commit is contained in:
parent
7e443c4282
commit
86193ca91c
@ -153,11 +153,7 @@ pub fn llvm_target_features(sess: &Session) -> impl Iterator<Item = &str> {
|
||||
.target_feature
|
||||
.split(',')
|
||||
.filter(|f| !RUSTC_SPECIFIC_FEATURES.iter().any(|s| f.contains(s)));
|
||||
sess.target
|
||||
.features
|
||||
.split(',')
|
||||
.chain(cmdline)
|
||||
.filter(|l| !l.is_empty())
|
||||
sess.target.features.split(',').chain(cmdline).filter(|l| !l.is_empty())
|
||||
}
|
||||
|
||||
pub fn apply_target_cpu_attr(cx: &CodegenCx<'ll, '_>, llfn: &'ll Value) {
|
||||
|
Loading…
Reference in New Issue
Block a user