From: Philip Herron <[email protected]>
gcc/rust/ChangeLog:
* backend/rust-tree.cc (rs_type_quals): Comment out bad assertion
Tested on x86_64-pc-linux-gnu, committed on master.
---
gcc/rust/backend/rust-tree.cc | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gcc/rust/backend/rust-tree.cc b/gcc/rust/backend/rust-tree.cc
index d2ddcfd2957..47506d6792a 100644
--- a/gcc/rust/backend/rust-tree.cc
+++ b/gcc/rust/backend/rust-tree.cc
@@ -974,9 +974,10 @@ rs_type_quals (const_tree type)
return TYPE_UNQUALIFIED;
quals = TYPE_QUALS (type);
/* METHOD and REFERENCE_TYPEs should never have quals. */
- gcc_assert (
- (TREE_CODE (type) != METHOD_TYPE && !TYPE_REF_P (type))
- || ((quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)) == TYPE_UNQUALIFIED));
+ // gcc_assert (
+ // (TREE_CODE (type) != METHOD_TYPE && !TYPE_REF_P (type))
+ // || ((quals & (TYPE_QUAL_CONST | TYPE_QUAL_VOLATILE)) ==
+ // TYPE_UNQUALIFIED));
return quals;
}
--
2.39.1
--
Gcc-rust mailing list
[email protected]
https://gcc.gnu.org/mailman/listinfo/gcc-rust