diff options
author | badumbatish <tanghocle456@gmail.com> | 2024-08-19 16:39:11 -0700 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-03-19 15:32:04 +0100 |
commit | 9ba10b08213a25854909836660f28914149d723b (patch) | |
tree | c3b4f0e15674daaeca82f38b28fbfc8e5bbbea4f /gcc/rust/ast | |
parent | 96cd17a73132873458989c4928e8189a8764e48d (diff) | |
download | gcc-9ba10b08213a25854909836660f28914149d723b.zip gcc-9ba10b08213a25854909836660f28914149d723b.tar.gz gcc-9ba10b08213a25854909836660f28914149d723b.tar.bz2 |
gccrs: Fix the disorder struct and class in inline asm
gcc/rust/ChangeLog:
* ast/rust-ast-full-decls.h (struct InlineAsmOperand):
Change to class
(class InlineAsmOperand): Change from struct
* hir/tree/rust-hir-full-decls.h (struct InlineAsmRegOrRegClass):
Removed from decl, used from AST
(struct AnonConst): new decl from rust-hir-expr.h
(class InlineAsmOperand): new decl from rust-hir-expr.h
Diffstat (limited to 'gcc/rust/ast')
-rw-r--r-- | gcc/rust/ast/rust-ast-full-decls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/ast/rust-ast-full-decls.h b/gcc/rust/ast/rust-ast-full-decls.h index 85f7373..80d217e 100644 --- a/gcc/rust/ast/rust-ast-full-decls.h +++ b/gcc/rust/ast/rust-ast-full-decls.h @@ -148,7 +148,7 @@ class AsyncBlockExpr; enum class InlineAsmOption; struct AnonConst; struct InlineAsmRegOrRegClass; -struct InlineAsmOperand; +class InlineAsmOperand; struct InlineAsmPlaceHolder; struct InlineAsmTemplatePiece; struct TupleClobber; |