diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2021-06-06 15:08:03 +0200 |
---|---|---|
committer | Marc Poulhiès <dkm@kataplop.net> | 2021-06-19 14:49:09 +0200 |
commit | 09d26b3e0b11859bc9fa27f9a4b176da47bc7add (patch) | |
tree | 9eb9d8b2bde0de1c2b59e68016cf943cf4d405cd /gcc/rust/backend/rust-compile-expr.h | |
parent | a0c1c0b4001f68c2f4827e65ec23e21fedc2a88d (diff) | |
download | gcc-09d26b3e0b11859bc9fa27f9a4b176da47bc7add.zip gcc-09d26b3e0b11859bc9fa27f9a4b176da47bc7add.tar.gz gcc-09d26b3e0b11859bc9fa27f9a4b176da47bc7add.tar.bz2 |
Make 3 error messages slightly more informational
Add more context to some internal error messages (ie. not intended for user)
Diffstat (limited to 'gcc/rust/backend/rust-compile-expr.h')
-rw-r--r-- | gcc/rust/backend/rust-compile-expr.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/rust/backend/rust-compile-expr.h b/gcc/rust/backend/rust-compile-expr.h index 59ae815..09652f1 100644 --- a/gcc/rust/backend/rust-compile-expr.h +++ b/gcc/rust/backend/rust-compile-expr.h @@ -183,8 +183,10 @@ public: if (!ctx->get_tyctx ()->lookup_type ( expr.get_mappings ().get_hirid (), &tyty)) { - rust_fatal_error (expr.get_locus (), - "did not resolve type for this literal expr"); + rust_fatal_error ( + expr.get_locus (), + "did not resolve type for this literal expr (HirId %d)", + expr.get_mappings ().get_hirid ()); return; } |