mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
llvm-dis: add Spanish translation (#15309)
This commit is contained in:
parent
751bfae524
commit
f9bebddde1
1 changed files with 16 additions and 0 deletions
16
pages.es/common/llvm-dis.md
Normal file
16
pages.es/common/llvm-dis.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# llvm-dis
|
||||
|
||||
> Convierte archivos LLVM de bitcode en representación intermedia (IR) LLVM legible.
|
||||
> Más información: <https://www.llvm.org/docs/CommandGuide/llvm-dis.html>.
|
||||
|
||||
- Convierte un archivo bitcode como LLVM IR y escribe el resultado en `stdout`:
|
||||
|
||||
`llvm-dis {{ruta/a/la/entrada.bc}} -o -`
|
||||
|
||||
- Convierte un archivo bitcode en un archivo LLVM IR con el mismo nombre de archivo:
|
||||
|
||||
`llvm-dis {{ruta/al/archivo.bc}}`
|
||||
|
||||
- Convierte un archivo bitcode en LLVM IR, escribe el resultado al archivo especificado:
|
||||
|
||||
`llvm-dis {{ruta/a/la/entrada.bc}} -o {{ruta/al/resultado.ll}}`
|
Loading…
Add table
Reference in a new issue