diff options
| author | Laurențiu Nicola <lnicola@users.noreply.github.com> | 2025-08-11 06:58:04 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-11 06:58:04 +0000 |
| commit | 6bb9af0eeb944611c3c87adca77afe86eda193d0 (patch) | |
| tree | 346a19d4687bd378070c21e87c4001aa6737c017 /compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | |
| parent | bd46f7b6aefa7fcd1bb6d7e278bbc8d6b94cf3f4 (diff) | |
| parent | 0585bdff8b6a6e239858f8153ab48f4053afe798 (diff) | |
| download | rust-6bb9af0eeb944611c3c87adca77afe86eda193d0.tar.gz rust-6bb9af0eeb944611c3c87adca77afe86eda193d0.zip | |
Merge pull request #20424 from rust-lang/rustc-pull
Rustc pull update
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp')
| -rw-r--r-- | compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp index c9814beedd6..588d867bbbf 100644 --- a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp +++ b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp @@ -1986,3 +1986,29 @@ extern "C" void LLVMRustSetNoSanitizeHWAddress(LLVMValueRef Global) { MD.NoHWAddress = true; GV.setSanitizerMetadata(MD); } + +enum class LLVMRustTailCallKind { + None = 0, + Tail = 1, + MustTail = 2, + NoTail = 3 +}; + +extern "C" void LLVMRustSetTailCallKind(LLVMValueRef Call, + LLVMRustTailCallKind Kind) { + CallInst *CI = unwrap<CallInst>(Call); + switch (Kind) { + case LLVMRustTailCallKind::None: + CI->setTailCallKind(CallInst::TCK_None); + break; + case LLVMRustTailCallKind::Tail: + CI->setTailCallKind(CallInst::TCK_Tail); + break; + case LLVMRustTailCallKind::MustTail: + CI->setTailCallKind(CallInst::TCK_MustTail); + break; + case LLVMRustTailCallKind::NoTail: + CI->setTailCallKind(CallInst::TCK_NoTail); + break; + } +} |
