[Bug jit/87291] Add support for inline asm to libgccjit

dmalcolm at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Thu Jun 4 14:21:16 GMT 2020


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87291

--- Comment #14 from David Malcolm <dmalcolm at gcc dot gnu.org> ---
Or even move the flags to API calls:

extern gcc_jit_extended_asm *
gcc_jit_block_add_extended_asm (gcc_jit_block *block,
                                const char *asm_template);
                                // location?
extern void
gcc_jit_extended_asm_set_volatile_flag (gcc_jit_extended_asm *ext_asm,
                                        int flag);
extern void
gcc_jit_extended_asm_set_inline_flag (gcc_jit_extended_asm *ext_asm,
                                      int flag);


More information about the Gcc-bugs mailing list