summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorLingMan <LingMan@users.noreply.github.com>2020-12-30 18:22:41 +0100
committerLingMan <LingMan@users.noreply.github.com>2021-01-16 20:05:02 +0100
commit76003f31f100b96b7c5f6d2414dde5088394b5bd (patch)
tree4eeddad8ed72248b6736b0441a338043e66a388c /compiler/rustc_codegen_llvm/src
parentefdb859dcdf7077cf6b8c85af0ea8820c93bcbdf (diff)
downloadrust-76003f31f100b96b7c5f6d2414dde5088394b5bd.tar.gz
rust-76003f31f100b96b7c5f6d2414dde5088394b5bd.zip
Use Option::map instead of open-coding it
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/llvm_util.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm_util.rs b/compiler/rustc_codegen_llvm/src/llvm_util.rs
index 6c2a871e520..26843670131 100644
--- a/compiler/rustc_codegen_llvm/src/llvm_util.rs
+++ b/compiler/rustc_codegen_llvm/src/llvm_util.rs
@@ -254,8 +254,6 @@ pub fn handle_native_features(sess: &Session) -> Vec<String> {
 }
 
 pub fn tune_cpu(sess: &Session) -> Option<&str> {
-    match sess.opts.debugging_opts.tune_cpu {
-        Some(ref s) => Some(handle_native(&**s)),
-        None => None,
-    }
+    let name = sess.opts.debugging_opts.tune_cpu.as_ref()?;
+    Some(handle_native(name))
 }