diff options
author | jjasmine <tanghocle456@gmail.com> | 2024-06-04 19:34:58 -0700 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-03-17 16:35:45 +0100 |
commit | fe3dd57b568e333656cb332f1a8b3c0dea0df976 (patch) | |
tree | 1deee3d4f0e465959b3702e18ac5770e6660db97 /gcc/rust/ast/rust-expr.h | |
parent | c3c045746ece1ccbfcd8d96c3b8ead99f08dd194 (diff) | |
download | gcc-fe3dd57b568e333656cb332f1a8b3c0dea0df976.zip gcc-fe3dd57b568e333656cb332f1a8b3c0dea0df976.tar.gz gcc-fe3dd57b568e333656cb332f1a8b3c0dea0df976.tar.bz2 |
gccrs: Scaffolding ast visitor for InlineAsm
gcc/rust/ChangeLog:
* ast/rust-ast-visitor.h:
Scaffolding ast visitor for InlineAsm
* ast/rust-ast.cc (InlineAsm::accept_vis): Likewise.
* ast/rust-expr.h: Likewise.
Diffstat (limited to 'gcc/rust/ast/rust-expr.h')
-rw-r--r-- | gcc/rust/ast/rust-expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/ast/rust-expr.h b/gcc/rust/ast/rust-expr.h index cc8c6ea..5f60ec7 100644 --- a/gcc/rust/ast/rust-expr.h +++ b/gcc/rust/ast/rust-expr.h @@ -4980,8 +4980,8 @@ public: InlineAsm (location_t locus, bool is_global_asm) : locus (locus), is_global_asm (is_global_asm) {} - void accept_vis (ASTVisitor &vis) override{}; + void accept_vis (ASTVisitor &vis) override; std::string as_string () const override { return "InlineAsm AST Node"; } location_t get_locus () const override { return locus; } |