add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,16 @@
# llvm-dis
> 将LLVM位码文件转换为人类可读的LLVM中间表示IR
> 更多信息:<https://www.llvm.org/docs/CommandGuide/llvm-dis.html>。
- 将位码文件转换为LLVM IR并将结果写入`stdout`
`llvm-dis {{path/to/input.bc}} -o -`
- 将位码文件转换为具有相同文件名的LLVM IR文件
`llvm-dis {{path/to/file.bc}}`
- 将位码文件转换为LLVM IR并将结果写入指定文件
`llvm-dis {{path/to/input.bc}} -o {{path/to/output.ll}}`