diff options
author | jjasmine <tanghocle456@gmail.com> | 2024-05-21 14:53:52 -0700 |
---|---|---|
committer | CohenArthur <arthur.cohen@embecosm.com> | 2024-06-13 15:31:07 +0000 |
commit | c3bdf2dda85db805ffc63c2d10850da544357405 (patch) | |
tree | 31eae59788a8ed38bf3de23dbc70a7f4384657dc | |
parent | 666e43bde81d41898d8cbde7edddb691a5c4a0f5 (diff) | |
download | gcc-c3bdf2dda85db805ffc63c2d10850da544357405.zip gcc-c3bdf2dda85db805ffc63c2d10850da544357405.tar.gz gcc-c3bdf2dda85db805ffc63c2d10850da544357405.tar.bz2 |
Introduced is_global_asm to InlineAsm AST
gcc/rust/ChangeLog:
* ast/rust-expr.h: Introduced is_global_asm to InlineAsm AST
-rw-r--r-- | gcc/rust/ast/rust-expr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index a5afbff..84fb5e8 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 |