Changeset 667
- Timestamp:
- Sep 9, 2003, 1:22:12 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/gcc/gcc/cp/error.c ¶
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r666 r667 658 658 output_add_space (scratch_buffer); 659 659 print_left_paren (scratch_buffer); 660 #ifdef EMX 661 emx_print_callingconvention(t, scratch_buffer); 662 #endif 660 663 padding = none; 661 664 break; … … 666 669 output_add_space (scratch_buffer); 667 670 print_left_paren (scratch_buffer); 671 #ifdef EMX 672 emx_print_callingconvention(t, scratch_buffer); 673 #endif 668 674 padding = none; 669 675 dump_aggr_type (TYPE_METHOD_BASETYPE (t), flags); … … 899 905 case SCOPE_REF: 900 906 dump_decl (TREE_OPERAND (t, 0), flags & ~TFF_DECL_SPECIFIERS); 901 print_scope_operator (scratch_buffer); 907 print_scope_operator (scratch_buffer); 902 908 dump_decl (TREE_OPERAND (t, 1), flags); 903 909 break; … … 952 958 break; 953 959 } 954 960 955 961 /* If there's only one function, just treat it like an ordinary 956 962 FUNCTION_DECL. */ … … 1344 1350 if (need_comma) 1345 1351 separate_with_comma (scratch_buffer); 1346 1352 1347 1353 if (!arg) 1348 1354 print_identifier (scratch_buffer, "<template parameter error>"); … … 1446 1452 if (t == 0) 1447 1453 return; 1448 1454 1449 1455 switch (TREE_CODE (t)) 1450 1456 { … … 2617 2623 case 'T': result = type_to_string (next_tree, verbose); break; 2618 2624 case 'V': result = cv_to_string (next_tree, verbose); break; 2619 2625 2620 2626 default: 2621 2627 return 0; -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.