Ticket #220: emxomf-04-no-hll-warnings.diff
File emxomf-04-no-hll-warnings.diff, 1.1 KB (added by , 14 years ago) |
---|
-
stabshll.c
old new 2025 2025 } 2026 2026 else 2027 2027 { 2028 warning_parse("Invalid BASE_OFFSET GNU extension format!");2028 no_warning ("Invalid BASE_OFFSET GNU extension format!"); 2029 2029 goto syntax; 2030 2030 } 2031 2031 break; … … 2694 2694 * The normal issue is C++ class references. */ 2695 2695 if (tp->tag != ty_alias || tp->index <= -3) 2696 2696 { 2697 warning_parse("Cycle detected by make_type.");2697 no_warning ("Cycle detected by make_type."); 2698 2698 RETURN (0); 2699 2699 } 2700 2700 } … … 2707 2707 t1 = stype_find (tp->d.stabs_ref); 2708 2708 if (t1 == NULL) 2709 2709 { 2710 warning_parse("Undefined stabs type %d referenced", tp->d.stabs_ref);2710 no_warning ("Undefined stabs type %d referenced", tp->d.stabs_ref); 2711 2711 RETURN (0x82); /* 32 bit signed */ 2712 2712 } 2713 2713 make_type (t1, &tp->index);