about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAugie Fackler <augie@google.com>2024-05-23 15:23:21 -0400
committerAugie Fackler <augie@google.com>2024-05-23 15:23:21 -0400
commit4a79b06f83fa370848ea6a3adb8093f485ee8d06 (patch)
tree30500f852f38169a8a5f0d5198b96dabffeb35f1 /src
parent29fc479a302a97a4c923076cc6211151aa802691 (diff)
downloadrust-4a79b06f83fa370848ea6a3adb8093f485ee8d06.tar.gz
rust-4a79b06f83fa370848ea6a3adb8093f485ee8d06.zip
rustc_codegen_gcc: fix changed method signature
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d786d5116ce..b1785e150ad 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -418,7 +418,7 @@ impl WriteBackendMethods for GccCodegenBackend {
         back::write::codegen(cgcx, dcx, module, config)
     }
 
-    fn prepare_thin(_module: ModuleCodegen<Self::Module>) -> (String, Self::ThinBuffer) {
+    fn prepare_thin(_module: ModuleCodegen<Self::Module>, _emit_summary: bool) -> (String, Self::ThinBuffer) {
         unimplemented!();
     }