Ticket #220: emxomf-04-no-hll-warnings.diff

File emxomf-04-no-hll-warnings.diff, 1.1 KB (added by dmik, 14 years ago)
  • stabshll.c

    old new  
    20252025              }
    20262026            else
    20272027              {
    2028                 warning_parse ("Invalid BASE_OFFSET GNU extension format!");
     2028                no_warning ("Invalid BASE_OFFSET GNU extension format!");
    20292029                goto syntax;
    20302030              }
    20312031            break;
     
    26942694       * The normal issue is C++ class references. */
    26952695      if (tp->tag != ty_alias || tp->index <= -3)
    26962696        {
    2697           warning_parse ("Cycle detected by make_type.");
     2697          no_warning ("Cycle detected by make_type.");
    26982698          RETURN (0);
    26992699        }
    27002700    }
     
    27072707      t1 = stype_find (tp->d.stabs_ref);
    27082708      if (t1 == NULL)
    27092709        {
    2710           warning_parse ("Undefined stabs type %d referenced", tp->d.stabs_ref);
     2710          no_warning ("Undefined stabs type %d referenced", tp->d.stabs_ref);
    27112711          RETURN (0x82);        /* 32 bit signed */
    27122712        }
    27132713      make_type (t1, &tp->index);