<div dir="ltr">As far as I known, for temp labels, only MCAsmStreamer will use name on temp labels, other MCStreamers will emit an unnamed temp symbol for temp label.<br><br>In RISCV, because of some dwarf sections need to use temp label (like section's begin label) to compute section length, these temp labels will be placed in the object file's symbol table.  For example: <br><div><br><div>```</div><div>$ readelf --syms hello.o<br>Symbol table '.symtab' contains 24 entries:<br>   Num:    Value          Size Type    Bind   Vis      Ndx Name<br>     0: 0000000000000000     0 NOTYPE  LOCAL  DEFAULT  UND <br>     1: 0000000000000000     0 FILE    LOCAL  DEFAULT  ABS hello.c<br>     2: 0000000000000002     0 NOTYPE  LOCAL  DEFAULT    2 <br>     3: 0000000000000002     0 NOTYPE  LOCAL  DEFAULT    2 <br>     4: 0000000000000002     0 NOTYPE  LOCAL  DEFAULT    2 <br>     5: 0000000000000004     0 NOTYPE  LOCAL  DEFAULT    2 <br>     6: 0000000000000008     0 NOTYPE  LOCAL  DEFAULT    2 <br>     7: 0000000000000008     0 NOTYPE  LOCAL  DEFAULT    2 <br>     8: 000000000000000a     0 NOTYPE  LOCAL  DEFAULT    2 <br></div><div>```</div><div>The second symbol to 8th symbol are unnamed symbols.</div><div><br></div><div>However, llvm's JITLink only allow named symbols.<br>How can I solve that ? </div><div>Make RISCVELFStreamer using name on temp labels? Or change JITLink ?<br>Or other ways ?</div><div><br></div><div><br></div></div></div>