about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/src
diff options
context:
space:
mode:
authorGary Guo <gary@garyguo.net>2023-04-08 13:12:24 +0100
committerGary Guo <gary@garyguo.net>2023-05-07 12:38:47 +0100
commit91afde57a28b1619f140fbe8463d150ce7c8adca (patch)
tree8676a958bb972c75a1b664475f8b64043d5e9535 /compiler/rustc_codegen_gcc/src
parent97926360e755547dc4663ab75af1e37e9a68e58b (diff)
downloadrust-91afde57a28b1619f140fbe8463d150ce7c8adca.tar.gz
rust-91afde57a28b1619f140fbe8463d150ce7c8adca.zip
Add todo for filter landing pad
Diffstat (limited to 'compiler/rustc_codegen_gcc/src')
-rw-r--r--compiler/rustc_codegen_gcc/src/builder.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_gcc/src/builder.rs b/compiler/rustc_codegen_gcc/src/builder.rs
index 5fba09d795c..869344ce92d 100644
--- a/compiler/rustc_codegen_gcc/src/builder.rs
+++ b/compiler/rustc_codegen_gcc/src/builder.rs
@@ -1228,6 +1228,7 @@ impl<'a, 'gcc, 'tcx> BuilderMethods<'a, 'tcx> for Builder<'a, 'gcc, 'tcx> {
     }
 
     fn filter_landing_pad(&mut self, pers_fn: RValue<'gcc>) -> (RValue<'gcc>, RValue<'gcc>) {
+        // TODO(antoyo): generate the correct landing pad
         self.cleanup_landing_pad(pers_fn)
     }