about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
diff options
context:
space:
mode:
authorAugie Fackler <augie@google.com>2024-05-23 15:10:04 -0400
committerAugie Fackler <augie@google.com>2024-05-23 15:10:04 -0400
commita0581b5b7fe6b9add5c1f0fe90a9f2cc8249b01e (patch)
treedd6e16b576adfee6a185ed63a44ab32f8f9153a2 /compiler/rustc_codegen_llvm/src/llvm/ffi.rs
parent3ea494190f0df0e6d1454b160419c9a72cfca5ba (diff)
downloadrust-a0581b5b7fe6b9add5c1f0fe90a9f2cc8249b01e.tar.gz
rust-a0581b5b7fe6b9add5c1f0fe90a9f2cc8249b01e.zip
cleanup: run rustfmt
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm/ffi.rs')
-rw-r--r--compiler/rustc_codegen_llvm/src/llvm/ffi.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
index 1e84c2be3c6..132e1f9e8fd 100644
--- a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
+++ b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs
@@ -2350,7 +2350,11 @@ extern "C" {
     #[allow(improper_ctypes)]
     pub fn LLVMRustModuleInstructionStats(M: &Module, Str: &RustString);
 
-    pub fn LLVMRustThinLTOBufferCreate(M: &Module, is_thin: bool, emit_summary: bool) -> &'static mut ThinLTOBuffer;
+    pub fn LLVMRustThinLTOBufferCreate(
+        M: &Module,
+        is_thin: bool,
+        emit_summary: bool,
+    ) -> &'static mut ThinLTOBuffer;
     pub fn LLVMRustThinLTOBufferFree(M: &'static mut ThinLTOBuffer);
     pub fn LLVMRustThinLTOBufferPtr(M: &ThinLTOBuffer) -> *const c_char;
     pub fn LLVMRustThinLTOBufferLen(M: &ThinLTOBuffer) -> size_t;