aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/backend/rust-compile-expr.cc
diff options
context:
space:
mode:
authorjjasmine <tanghocle456@gmail.com>2024-06-22 11:56:50 -0700
committerArthur Cohen <arthur.cohen@embecosm.com>2025-03-19 15:32:05 +0100
commit51f430a4642339af721dbc09af8db39aef8c744c (patch)
tree2da5d1654ea0e5f20d8e1676504b5d9f802223e3 /gcc/rust/backend/rust-compile-expr.cc
parent9996b8ef849cb5626e14d0747dd45f10541807d0 (diff)
downloadgcc-51f430a4642339af721dbc09af8db39aef8c744c.zip
gcc-51f430a4642339af721dbc09af8db39aef8c744c.tar.gz
gcc-51f430a4642339af721dbc09af8db39aef8c744c.tar.bz2
gccrs: Scaffolding asm codegen
gcc/rust/ChangeLog: * backend/rust-compile-block.h: Scaffolding asm codegen * backend/rust-compile-expr.cc (CompileExpr::visit): Likewise. * backend/rust-compile-expr.h: Likewise. * checks/errors/borrowck/rust-bir-builder-expr-stmt.cc (ExprStmtBuilder::visit): Likewise. * checks/errors/borrowck/rust-bir-builder-expr-stmt.h: Likewise. * checks/errors/borrowck/rust-bir-builder-lazyboolexpr.h: Likewise. * checks/errors/privacy/rust-privacy-reporter.cc (PrivacyReporter::visit): Likewise. * checks/errors/privacy/rust-privacy-reporter.h: Likewise. * hir/tree/rust-hir-expr.h: Likewise. * hir/tree/rust-hir-visitor.h: Likewise. * typecheck/rust-hir-type-check-expr.cc (TypeCheckExpr::visit): Likewise. * typecheck/rust-hir-type-check-expr.h: Likewise.
Diffstat (limited to 'gcc/rust/backend/rust-compile-expr.cc')
-rw-r--r--gcc/rust/backend/rust-compile-expr.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/rust/backend/rust-compile-expr.cc b/gcc/rust/backend/rust-compile-expr.cc
index e2fa6dd..e23c691 100644
--- a/gcc/rust/backend/rust-compile-expr.cc
+++ b/gcc/rust/backend/rust-compile-expr.cc
@@ -319,6 +319,10 @@ CompileExpr::visit (HIR::IfExpr &expr)
}
void
+CompileExpr::visit (HIR::InlineAsm &expr)
+{}
+
+void
CompileExpr::visit (HIR::IfExprConseqElse &expr)
{
TyTy::BaseType *if_type = nullptr;