about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
-rw-r--r--compiler/rustc_codegen_llvm/src/llvm_util.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm_util.rs b/compiler/rustc_codegen_llvm/src/llvm_util.rs
index bc2165fa829..676890b36eb 100644
--- a/compiler/rustc_codegen_llvm/src/llvm_util.rs
+++ b/compiler/rustc_codegen_llvm/src/llvm_util.rs
@@ -211,11 +211,11 @@ impl<'a> IntoIterator for LLVMFeature<'a> {
 /// To find a list of LLVM's names, see llvm-project/llvm/lib/Target/{ARCH}/*.td
 /// where `{ARCH}` is the architecture name. Look for instances of `SubtargetFeature`.
 ///
-/// Check the current rustc fork of LLVM in the repo at <https://github.com/rust-lang/llvm-project/>.
-/// The commit in use can be found via the `llvm-project` submodule in
-/// <https://github.com/rust-lang/rust/tree/master/src> Though note that Rust can also be build with
-/// an external precompiled version of LLVM which might lead to failures if the oldest tested /
-/// supported LLVM version doesn't yet support the relevant intrinsics.
+/// Check the current rustc fork of LLVM in the repo at
+/// <https://github.com/rust-lang/llvm-project/>. The commit in use can be found via the
+/// `llvm-project` submodule in <https://github.com/rust-lang/rust/tree/master/src> Though note that
+/// Rust can also be build with an external precompiled version of LLVM which might lead to failures
+/// if the oldest tested / supported LLVM version doesn't yet support the relevant intrinsics.
 pub(crate) fn to_llvm_features<'a>(sess: &Session, s: &'a str) -> Option<LLVMFeature<'a>> {
     let arch = if sess.target.arch == "x86_64" {
         "x86"