diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/rust/expand/rust-macro-builtins-asm.cc | 6 | ||||
-rw-r--r-- | gcc/rust/expand/rust-macro-builtins-asm.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gcc/rust/expand/rust-macro-builtins-asm.cc b/gcc/rust/expand/rust-macro-builtins-asm.cc index f7703dd..3ce9bf9 100644 --- a/gcc/rust/expand/rust-macro-builtins-asm.cc +++ b/gcc/rust/expand/rust-macro-builtins-asm.cc @@ -385,8 +385,8 @@ MacroBuiltin::asm_handler (location_t invoc_locus, AST::MacroInvocData &invoc, } int -parseAsmArg (Parser<MacroInvocLexer> &parser, TokenId last_token_id, - InlineAsmContext &inlineAsmCtx) +parse_asm_arg (Parser<MacroInvocLexer> &parser, TokenId last_token_id, + InlineAsmContext &inlineAsmCtx) { auto token = parser.peek_current_token (); tl::optional<std::string> fm_string; @@ -505,7 +505,7 @@ parse_asm (location_t invoc_locus, AST::MacroInvocData &invoc, } // operands stream, also handles the optional "," - parseAsmArg (parser, last_token_id, inlineAsmCtx); + parse_asm_arg (parser, last_token_id, inlineAsmCtx); return tl::nullopt; } diff --git a/gcc/rust/expand/rust-macro-builtins-asm.h b/gcc/rust/expand/rust-macro-builtins-asm.h index 6576378..a35d770 100644 --- a/gcc/rust/expand/rust-macro-builtins-asm.h +++ b/gcc/rust/expand/rust-macro-builtins-asm.h @@ -31,8 +31,8 @@ public: }; int -parseAsmArg (Parser<MacroInvocLexer> &p, TokenId last_token_id, - InlineAsmContext &inlineAsmCtx); +parse_asm_arg (Parser<MacroInvocLexer> &p, TokenId last_token_id, + InlineAsmContext &inlineAsmCtx); tl::optional<AST::Fragment> parse_global_asm (location_t invoc_locus, AST::MacroInvocData &invoc); |