aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/hir/tree
diff options
context:
space:
mode:
authorjjasmine <tanghocle456@gmail.com>2024-05-24 15:31:48 -0700
committerArthur Cohen <arthur.cohen@embecosm.com>2025-03-17 16:35:41 +0100
commit939b1262faf21e80bcee958dcda6d4393b24dd36 (patch)
tree8d1a669f7d3da22470e2634e648ef15fe8bf42fc /gcc/rust/hir/tree
parentec5104296ca807ff22832ab878a3cdaf1661549d (diff)
downloadgcc-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.h2
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