about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2024-10-25 13:57:46 +1100
committerZalathar <Zalathar@users.noreply.github.com>2024-10-25 14:24:05 +1100
commit8f075145200aef04b36f2e2239f09b796c6ac8b8 (patch)
tree7f9d9891942efd47372a9ebca19b4e3999a04f9c /compiler/rustc_codegen_gcc
parentb3d65852c3addf4e8e6be96965ead86c2d4fb8be (diff)
downloadrust-8f075145200aef04b36f2e2239f09b796c6ac8b8.tar.gz
rust-8f075145200aef04b36f2e2239f09b796c6ac8b8.zip
coverage: SSA doesn't need to know about `instrprof_increment`
Diffstat (limited to 'compiler/rustc_codegen_gcc')
-rw-r--r--compiler/rustc_codegen_gcc/src/builder.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/compiler/rustc_codegen_gcc/src/builder.rs b/compiler/rustc_codegen_gcc/src/builder.rs
index 45738068509..7c52cba096b 100644
--- a/compiler/rustc_codegen_gcc/src/builder.rs
+++ b/compiler/rustc_codegen_gcc/src/builder.rs
@@ -1725,16 +1725,6 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
     fn fptosi_sat(&mut self, val: RValue<'gcc>, dest_ty: Type<'gcc>) -> RValue<'gcc> {
         self.fptoint_sat(true, val, dest_ty)
     }
-
-    fn instrprof_increment(
-        &mut self,
-        _fn_name: RValue<'gcc>,
-        _hash: RValue<'gcc>,
-        _num_counters: RValue<'gcc>,
-        _index: RValue<'gcc>,
-    ) {
-        unimplemented!();
-    }
 }
 
 impl<'a, 'gcc, 'tcx> Builder<'a, 'gcc, 'tcx> {