diff options
author | jjasmine <tanghocle456@gmail.com> | 2024-05-24 15:31:48 -0700 |
---|---|---|
committer | CohenArthur <arthur.cohen@embecosm.com> | 2024-06-13 15:31:07 +0000 |
commit | 93e27fa1b2ef168a5831ebc3ac676b4a2a1c55c2 (patch) | |
tree | ba56d9e070dc5ee688e965f87d9b402c0a8f885a /gcc/rust/hir | |
parent | 387917381a467b50943d989669a206cea7fe02cc (diff) | |
download | gcc-93e27fa1b2ef168a5831ebc3ac676b4a2a1c55c2.zip gcc-93e27fa1b2ef168a5831ebc3ac676b4a2a1c55c2.tar.gz gcc-93e27fa1b2ef168a5831ebc3ac676b4a2a1c55c2.tar.bz2 |
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')
-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 1a40ea5..a319844 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 |