On Sun, Feb 25, 2018 at 11:27 PM, Pablo Rozas Larraondo <p.rozas.larrao...@gmail.com> wrote: > > I started learning about Go assembler and I'm having problems with the > NOSPLIT symbol, which makes the compilation fail with error message: > "illegal or missing addressing mode for symbol NOSPLIT" > > I've found a blog post which describes the same problem and proposes > removing the symbol in order to compile it: > https://www.manniwood.com/2016_07_03/fun_with_go_assembler.html > > Apart from this reference, I cannot find more information on this problem > and I would like to understand when NOSPLIT has to be used.
What, precisely, did you do? In order to use NOSPLIT, you must #include "textflag.h". Then you can use NOSPLIT as a function flag to indicate that the function should not have a stack split preamble. There are many examples in runtime/*.s in the standard library. Ian -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.