From: jjasmine Date: Tue, 21 May 2024 21:53:52 +0000 (-0700) Subject: gccrs: Introduced is_global_asm to InlineAsm AST X-Git-Tag: basepoints/gcc-16~1384 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db7903e17fc01086cd470495e47a8c6ffe90d4a2;p=thirdparty%2Fgcc.git gccrs: Introduced is_global_asm to InlineAsm AST gcc/rust/ChangeLog: * ast/rust-expr.h: Introduced is_global_asm to InlineAsm AST --- diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index a5afbffee99..84fb5e8ab33 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 line_spans; + bool is_global_asm; }; } // namespace AST