diff options
Diffstat (limited to 'gcc/rust/backend/rust-compile-asm.cc')
-rw-r--r-- | gcc/rust/backend/rust-compile-asm.cc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gcc/rust/backend/rust-compile-asm.cc b/gcc/rust/backend/rust-compile-asm.cc index 045cc28..8294feb 100644 --- a/gcc/rust/backend/rust-compile-asm.cc +++ b/gcc/rust/backend/rust-compile-asm.cc @@ -7,14 +7,8 @@ namespace Compile { CompileAsm::CompileAsm (Context *ctx) : HIRCompileBase (ctx), translated (error_mark_node) {} -void -CompileAsm::visit (HIR::InlineAsm &expr) -{ - ctx->add_statement (asm_build_expr (expr)); -} - tree -CompileAsm::asm_build_expr (HIR::InlineAsm &expr) +CompileAsm::tree_codegen_asm (HIR::InlineAsm &expr) { auto asm_expr = asm_build_stmt (expr.get_locus (), {asm_construct_string_tree (expr), |