diff options
author | jjasmine <tanghocle456@gmail.com> | 2024-05-24 15:31:48 -0700 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-03-17 16:35:41 +0100 |
commit | 939b1262faf21e80bcee958dcda6d4393b24dd36 (patch) | |
tree | 8d1a669f7d3da22470e2634e648ef15fe8bf42fc /gcc/rust/hir/tree | |
parent | ec5104296ca807ff22832ab878a3cdaf1661549d (diff) | |
download | gcc-939b1262faf21e80bcee958dcda6d4393b24dd36.zip gcc-939b1262faf21e80bcee958dcda6d4393b24dd36.tar.gz gcc-939b1262faf21e80bcee958dcda6d4393b24dd36.tar.bz2 |
gccrs: Rename InlineAsmOptions to InlineAsmOption
Rename InlineAsmOptions to InlineAsmOption for clarity
gcc/rust/ChangeLog:
* ast/rust-ast-full-decls.h (enum class):
Rename InlineAsmOptions to InlineAsmOption for clarity
* ast/rust-expr.h (enum class): Likewise.
* expand/rust-macro-builtins-asm.cc (check_and_set): Likewise.
(parse_options): Likewise.
* expand/rust-macro-builtins-asm.h (check_and_set): Likewise.
* hir/tree/rust-hir-expr.h: Likewise.
Diffstat (limited to 'gcc/rust/hir/tree')
-rw-r--r-- | gcc/rust/hir/tree/rust-hir-expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/hir/tree/rust-hir-expr.h b/gcc/rust/hir/tree/rust-hir-expr.h index 11b1c4c..686c731 100644 --- a/gcc/rust/hir/tree/rust-hir-expr.h +++ b/gcc/rust/hir/tree/rust-hir-expr.h @@ -3870,7 +3870,7 @@ public: std::vector<AST::InlineAsmTemplatePiece> template_; std::vector<AST::TupleTemplateStr> template_strs; std::vector<AST::InlineAsmOperand> operands; - AST::InlineAsmOptions options; + AST::InlineAsmOption options; std::vector<location_t> line_spans; }; } // namespace HIR |