diff options
author | Arthur Cohen <arthur.cohen@embecosm.com> | 2024-12-24 11:45:09 +0000 |
---|---|---|
committer | Arthur Cohen <arthur.cohen@embecosm.com> | 2025-03-24 13:06:53 +0100 |
commit | 561ef90a3649a12a82b2312d0559d6f4de0a4db8 (patch) | |
tree | 6a9e6fb42c2c5b9664b170605df84431308381e6 /gcc/rust/backend | |
parent | 23a3ec61f6defea5bae6c35d8042b335e6e32dfc (diff) | |
download | gcc-561ef90a3649a12a82b2312d0559d6f4de0a4db8.zip gcc-561ef90a3649a12a82b2312d0559d6f4de0a4db8.tar.gz gcc-561ef90a3649a12a82b2312d0559d6f4de0a4db8.tar.bz2 |
gccrs: backend: Allow anything as a match scrutinee
gcc/rust/ChangeLog:
* backend/rust-compile-expr.cc (check_match_scrutinee): Allow anything to be used as a
match scrutinee, not just ADTs.
Diffstat (limited to 'gcc/rust/backend')
-rw-r--r-- | gcc/rust/backend/rust-compile-expr.cc | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/rust/backend/rust-compile-expr.cc b/gcc/rust/backend/rust-compile-expr.cc index 353a498..887e476 100644 --- a/gcc/rust/backend/rust-compile-expr.cc +++ b/gcc/rust/backend/rust-compile-expr.cc @@ -31,6 +31,7 @@ #include "convert.h" #include "print-tree.h" #include "rust-system.h" +#include "rust-tyty.h" namespace Rust { namespace Compile { @@ -1035,11 +1036,6 @@ check_match_scrutinee (HIR::MatchExpr &expr, Context *ctx) } TyTy::TypeKind scrutinee_kind = scrutinee_expr_tyty->get_kind (); - rust_assert ((TyTy::is_primitive_type_kind (scrutinee_kind) - && scrutinee_kind != TyTy::TypeKind::NEVER) - || scrutinee_kind == TyTy::TypeKind::ADT - || scrutinee_kind == TyTy::TypeKind::TUPLE - || scrutinee_kind == TyTy::TypeKind::REF); if (scrutinee_kind == TyTy::TypeKind::FLOAT) { |