summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/asm.rs
diff options
context:
space:
mode:
authorDirreke <mingyang_ge@163.com>2023-07-19 22:33:34 +0800
committerdirreke <mingyang_ge@163.com>2023-08-14 23:02:37 +0800
commit184a9afffbc7ba23409ca071d86b34ad74f50b17 (patch)
tree0b008142c5a10f172692beab241a0cbd5b724a8a /compiler/rustc_codegen_llvm/src/asm.rs
parent9e5fb333f7b392ab28f51641c00270e82b84d607 (diff)
downloadrust-184a9afffbc7ba23409ca071d86b34ad74f50b17.tar.gz
rust-184a9afffbc7ba23409ca071d86b34ad74f50b17.zip
add details for csky-unknown-linux-gnuabiv2 and add docs
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/asm.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/asm.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/asm.rs b/compiler/rustc_codegen_llvm/src/asm.rs
index 4d7db96cc82..ca9fd76a997 100644
--- a/compiler/rustc_codegen_llvm/src/asm.rs
+++ b/compiler/rustc_codegen_llvm/src/asm.rs
@@ -261,7 +261,7 @@ impl<'ll, 'tcx> AsmBuilderMethods<'tcx> for Builder<'_, 'll, 'tcx> {
                 InlineAsmArch::M68k => {
                     constraints.push("~{ccr}".to_string());
                 }
-                InlineAsmArch::CSKY => {} // https://github.com/llvm/llvm-project/blob/8b76aea8d8b1b71f6220bc2845abc749f18a19b7/clang/lib/Basic/Targets/CSKY.h getClobers()
+                InlineAsmArch::CSKY => {}
             }
         }
         if !options.contains(InlineAsmOptions::NOMEM) {