about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/tools/miri/src/shims/ctor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/miri/src/shims/ctor.rs b/src/tools/miri/src/shims/ctor.rs
index 75f564989bc..367c2b1608b 100644
--- a/src/tools/miri/src/shims/ctor.rs
+++ b/src/tools/miri/src/shims/ctor.rs
@@ -52,7 +52,7 @@ impl<'tcx> GlobalCtorState<'tcx> {
 
                         // Read the standard `.init_array` section on platforms that use ELF, or WASM,
                         // which supports the same linker directive.
-                        // FIXME: Add support for `.init_array.N`.
+                        // FIXME: Add support for `.init_array.N` and `.ctors`?
                         BinaryFormat::Elf | BinaryFormat::Wasm =>
                             this.lookup_link_section(|section| section == ".init_array")?,