https://gcc.gnu.org/g:db7903e17fc01086cd470495e47a8c6ffe90d4a2
commit r15-8169-gdb7903e17fc01086cd470495e47a8c6ffe90d4a2 Author: jjasmine <[email protected]> Date: Tue May 21 14:53:52 2024 -0700 gccrs: Introduced is_global_asm to InlineAsm AST gcc/rust/ChangeLog: * ast/rust-expr.h: Introduced is_global_asm to InlineAsm AST Diff: --- gcc/rust/ast/rust-expr.h | 1 + 1 file changed, 1 insertion(+) diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index a5afbffee99b..84fb5e8ab337 100644 --- a/gcc/rust/ast/rust-expr.h +++ b/gcc/rust/ast/rust-expr.h @@ -4841,6 +4841,7 @@ public: TupleClobber clobber_abi; InlineAsmOptions options; std::vector<location_t> line_spans; + bool is_global_asm; }; } // namespace AST
