about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2023-10-28 23:20:55 -0700
committerJubilee Young <workingjubilee@gmail.com>2023-10-28 23:24:25 -0700
commit208f378ef18aa1d8d9482caa7fa5ab8ab190d2f3 (patch)
tree3a4d45d645834e63a32e6d2907319209f429527f /compiler/rustc_codegen_ssa/src/back
parent0c1a452304a832428c629e083d61d58e4a077018 (diff)
downloadrust-208f378ef18aa1d8d9482caa7fa5ab8ab190d2f3.tar.gz
rust-208f378ef18aa1d8d9482caa7fa5ab8ab190d2f3.zip
Remove asmjs from compiler
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/link.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs
index bcbb75d9599..61f36cb912d 100644
--- a/compiler/rustc_codegen_ssa/src/back/link.rs
+++ b/compiler/rustc_codegen_ssa/src/back/link.rs
@@ -2251,9 +2251,9 @@ fn linker_with_args<'a>(
     // ------------ Late order-dependent options ------------
 
     // Doesn't really make sense.
-    // FIXME: In practice built-in target specs use this for arbitrary order-independent options,
-    // introduce a target spec option for order-independent linker options, migrate built-in specs
-    // to it and remove the option.
+    // FIXME: In practice built-in target specs use this for arbitrary order-independent options.
+    // Introduce a target spec option for order-independent linker options, migrate built-in specs
+    // to it and remove the option. Currently the last holdout is wasm32-unknown-emscripten.
     add_post_link_args(cmd, sess, flavor);
 
     Ok(cmd.take_cmd())