File tree 1 file changed +3
-6
lines changed
compiler/rustc_codegen_llvm/src
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -192,14 +192,11 @@ impl<'a> IntoIterator for LLVMFeature<'a> {
192
192
// to LLVM or the feature detection code will walk past the end of the feature
193
193
// array, leading to crashes.
194
194
//
195
- // To find a list of LLVM's names, check llvm-project/llvm/include/llvm/Support/*TargetParser.def
196
- // where the * matches the architecture's name
197
- //
198
- // For targets not present in the above location, see llvm-project/llvm/lib/Target/{ARCH}/*.td
195
+ // To find a list of LLVM's names, see llvm-project/llvm/lib/Target/{ARCH}/*.td
199
196
// where `{ARCH}` is the architecture name. Look for instances of `SubtargetFeature`.
200
197
//
201
- // Beware to not use the llvm github project for this, but check the git submodule
202
- // found in src/ llvm-project
198
+ // Check the current rustc fork of LLVM in the repo at https://github.com/rust-lang/llvm-project/.
199
+ // The commit in use can be found via the ` llvm-project` submodule in https://github.com/rust-lang/rust/tree/master/src
203
200
// Though note that Rust can also be build with an external precompiled version of LLVM
204
201
// which might lead to failures if the oldest tested / supported LLVM version
205
202
// doesn't yet support the relevant intrinsics
You can’t perform that action at this time.
0 commit comments