Skip to content

Commit

Permalink
wip: Use new ASM_INPUT_P API
Browse files Browse the repository at this point in the history
  • Loading branch information
CohenArthur committed Oct 29, 2024
1 parent 4d0c588 commit 54d233b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gcc/rust/backend/rust-compile-asm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CompileAsm::tree_codegen_asm (HIR::InlineAsm &expr)
asm_construct_clobber_tree (expr),
asm_construct_label_tree (expr)});

ASM_INPUT_P (asm_expr) = expr.is_simple_asm ();
ASM_BASIC_P (asm_expr) = expr.is_simple_asm ();
ASM_VOLATILE_P (asm_expr) = false;
ASM_INLINE_P (asm_expr) = expr.is_inline_asm ();
/*Backend::debug (asm_expr);*/
Expand Down

0 comments on commit 54d233b

Please sign in to comment.