[llvm] [WebAssembly] Support parsing .lto_set_conditional (PR #126546)

Sam Clegg via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 10 09:54:24 PST 2025


================
@@ -0,0 +1,13 @@
+; RUN: llc %s -filetype=obj
+
+target triple = "wasm32-unknown-unknown"
+
+; In .lto_set_conditional, the first symbol is renamed to the second symbol, so
+; the first symbol does not exist anymore in the file. Object writer should not
+; crash when .lto_set_conditional is present.
+
+module asm ".lto_set_conditional a,a.new"
----------------
sbc100 wrote:

Could we wring this in asm directly instead? (i.e could this test be a .s file?)

https://github.com/llvm/llvm-project/pull/126546


More information about the llvm-commits mailing list