rust/compiler/rustc_llvm/llvm-wrapper
Nikita Popov 8dfd3a455d Remove LLVMRustDIBuilderInsertDeclareAtEnd return value
The return value changed from an Instruction to a DbgRecord in
LLVM 19. As we don't actually use the result, drop the return
value entirely to support both.
2024-07-12 22:15:10 +02:00
..
.editorconfig Move rustllvm into rustc_llvm 2020-09-09 23:05:43 +03:00
ArchiveWrapper.cpp Format C++ files in llvm-wrapper 2024-06-26 20:18:49 +08:00
CoverageMappingWrapper.cpp coverage. Generate Mappings of decisions and conditions for MC/DC 2024-04-19 17:09:26 +08:00
Linker.cpp Format C++ files in llvm-wrapper 2024-06-26 20:18:49 +08:00
LLVMWrapper.h Set writable and dead_on_unwind attributes for sret arguments 2024-04-25 11:43:47 +09:00
PassWrapper.cpp Rename the asm-comments compiler flag to verbose-asm 2024-07-02 21:42:01 -04:00
README Move rustllvm into rustc_llvm 2020-09-09 23:05:43 +03:00
RustWrapper.cpp Remove LLVMRustDIBuilderInsertDeclareAtEnd return value 2024-07-12 22:15:10 +02:00
SuppressLLVMWarnings.h Format C++ files in llvm-wrapper 2024-06-26 20:18:49 +08:00
SymbolWrapper.cpp Format C++ files in llvm-wrapper 2024-06-26 20:18:49 +08:00

This directory currently contains some LLVM support code. This will generally
be sent upstream to LLVM in time; for now it lives here.

NOTE: the LLVM C++ ABI is subject to between-version breakage and must *never*
be exposed to Rust. To allow for easy auditing of that, all Rust-exposed types
must be typedef-ed as "LLVMXyz", or "LLVMRustXyz" if they were defined here.

Functions that return a failure status and leave the error in
the LLVM last error should return an LLVMRustResult rather than an
int or anything to avoid confusion.

When translating enums, add a single `Other` variant as the first
one to allow for new variants to be added. It should abort when used
as an input.

All other types must not be typedef-ed as such.