aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorPhilip Herron <philip.herron@embecosm.com>2021-10-26 14:26:33 +0100
committerPhilip Herron <philip.herron@embecosm.com>2021-10-27 10:27:54 +0100
commit1b9ddc724051a678035b0b51e2e3932f01838a5e (patch)
tree15e726ba7486549487a197c95bff2ab1463b7c0d /gcc
parent1a8479839e944fa2a8abd5923b4b65ce6cc96401 (diff)
downloadgcc-1b9ddc724051a678035b0b51e2e3932f01838a5e.zip
gcc-1b9ddc724051a678035b0b51e2e3932f01838a5e.tar.gz
gcc-1b9ddc724051a678035b0b51e2e3932f01838a5e.tar.bz2
TyTy add bounds in debug string
Diffstat (limited to 'gcc')
-rw-r--r--gcc/rust/typecheck/rust-tyty.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/rust/typecheck/rust-tyty.h b/gcc/rust/typecheck/rust-tyty.h
index aa24464..ef37dc6 100644
--- a/gcc/rust/typecheck/rust-tyty.h
+++ b/gcc/rust/typecheck/rust-tyty.h
@@ -380,7 +380,7 @@ public:
std::string debug_str () const
{
return TypeKindFormat::to_string (get_kind ()) + ":" + as_string () + ":"
- + mappings_str ();
+ + mappings_str () + ":" + bounds_as_string ();
}
void debug () const