about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
diff options
context:
space:
mode:
authorzhuyunxing <zhuyunxing.zyx@alibaba-inc.com>2024-04-19 10:58:16 +0800
committerDeltalice <deltalice@outlook.com>2024-04-20 00:34:40 +0800
commit439dbfa1ecb1b45db0acc728094d6e8ed3dc3080 (patch)
tree68f3b3352a9b056c0339786116390db4afe756c1 /compiler/rustc_codegen_llvm/src/llvm/ffi.rs
parentcf6b6cb2b4d6e1d4b1d7ec9daa2debf075bd7ed6 (diff)
downloadrust-439dbfa1ecb1b45db0acc728094d6e8ed3dc3080.tar.gz
rust-439dbfa1ecb1b45db0acc728094d6e8ed3dc3080.zip
coverage. Lowering MC/DC statements to llvm-ir
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm/ffi.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/llvm/ffi.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
index 83158f6f1d5..a10dc61967e 100644
--- a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
+++ b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
@@ -1631,6 +1631,10 @@ extern "C" {
 
     // Miscellaneous instructions
     pub fn LLVMRustGetInstrProfIncrementIntrinsic(M: &Module) -> &Value;
+    pub fn LLVMRustGetInstrProfMCDCParametersIntrinsic(M: &Module) -> &Value;
+    pub fn LLVMRustGetInstrProfMCDCTVBitmapUpdateIntrinsic(M: &Module) -> &Value;
+    pub fn LLVMRustGetInstrProfMCDCCondBitmapIntrinsic(M: &Module) -> &Value;
+
     pub fn LLVMRustBuildCall<'a>(
         B: &Builder<'a>,
         Ty: &'a Type,