Commit 420fb10c by Miguel Saldivar Committed by Jeff Law

cp-demangle.c (d_print_mod): Add a space before printing `complex` and…

cp-demangle.c (d_print_mod): Add a space before printing `complex` and `imaginary`, as opposed to after.

	* cp-demangle.c (d_print_mod): Add a space before printing `complex`
	and `imaginary`, as opposed to after.
	* testsuite/demangle-expected: Adjust test.

From-SVN: r277535
parent ea9d5cc8
2019-10-28 Miguel Saldivar <saldivarcher@gmail.com>
* cp-demangle.c (d_print_mod): Add a space before printing `complex`
and `imaginary`, as opposed to after.
* testsuite/demangle-expected: Adjust test.
2019-10-03 Eduard-Mihai Burtescu <eddyb@lyken.rs> 2019-10-03 Eduard-Mihai Burtescu <eddyb@lyken.rs>
* rust-demangle.c (looks_like_rust): Remove. * rust-demangle.c (looks_like_rust): Remove.
......
...@@ -5977,10 +5977,10 @@ d_print_mod (struct d_print_info *dpi, int options, ...@@ -5977,10 +5977,10 @@ d_print_mod (struct d_print_info *dpi, int options,
d_append_string (dpi, "&&"); d_append_string (dpi, "&&");
return; return;
case DEMANGLE_COMPONENT_COMPLEX: case DEMANGLE_COMPONENT_COMPLEX:
d_append_string (dpi, "complex "); d_append_string (dpi, " _Complex");
return; return;
case DEMANGLE_COMPONENT_IMAGINARY: case DEMANGLE_COMPONENT_IMAGINARY:
d_append_string (dpi, "imaginary "); d_append_string (dpi, " _Imaginary");
return; return;
case DEMANGLE_COMPONENT_PTRMEM_TYPE: case DEMANGLE_COMPONENT_PTRMEM_TYPE:
if (d_last_char (dpi) != '(') if (d_last_char (dpi) != '(')
......
...@@ -1278,7 +1278,7 @@ int& int_if_addable<Y>(A<sizeof ((*((Y*)(0)))+(*((Y*)(0))))>*) ...@@ -1278,7 +1278,7 @@ int& int_if_addable<Y>(A<sizeof ((*((Y*)(0)))+(*((Y*)(0))))>*)
# #
--format=gnu-v3 --format=gnu-v3
_Z3bazIiEvP1AIXszcl3foocvT__ELCf00000000_00000000EEEE _Z3bazIiEvP1AIXszcl3foocvT__ELCf00000000_00000000EEEE
void baz<int>(A<sizeof (foo((int)(), (floatcomplex )00000000_00000000))>*) void baz<int>(A<sizeof (foo((int)(), (float Complex)00000000_00000000))>*)
# #
--format=gnu-v3 --format=gnu-v3
_Z3fooI1FEN1XIXszdtcl1PclcvT__EEE5arrayEE4TypeEv _Z3fooI1FEN1XIXszdtcl1PclcvT__EEE5arrayEE4TypeEv
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment