about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2025-02-25 16:45:35 +1100
committerNicholas Nethercote <n.nethercote@gmail.com>2025-03-05 09:52:28 +1100
commitcee311454427bf5049f5493bb7c7d74df2abb369 (patch)
tree3faaafd6bb36bb445120c483cccf377e5cad4037 /compiler/rustc_codegen_llvm/src
parent35b7994ea884aaa771b44fd89436f4feebf86c1b (diff)
downloadrust-cee311454427bf5049f5493bb7c7d74df2abb369.tar.gz
rust-cee311454427bf5049f5493bb7c7d74df2abb369.zip
Remove out of date comment.
No smallvecs here.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/llvm_util.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm_util.rs b/compiler/rustc_codegen_llvm/src/llvm_util.rs
index a4ada290ae1..4a166b0872d 100644
--- a/compiler/rustc_codegen_llvm/src/llvm_util.rs
+++ b/compiler/rustc_codegen_llvm/src/llvm_util.rs
@@ -325,7 +325,6 @@ pub(crate) fn target_features_cfg(sess: &Session) -> (Vec<Symbol>, Vec<Symbol>)
             if RUSTC_SPECIAL_FEATURES.contains(feature) {
                 return true;
             }
-            // check that all features in a given smallvec are enabled
             if let Some(feat) = to_llvm_features(sess, feature) {
                 for llvm_feature in feat {
                     let cstr = SmallCStr::new(llvm_feature);