Changeset 587


Ignore:
Timestamp:
Aug 12, 2003, 11:26:14 AM (22 years ago)
Author:
bird
Message:

Skip leading '*' in function label when generating mepilogue lable.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gcc/gcc/config/i386/emx.c

    • Property cvs2svn:cvs-rev changed from 1.8 to 1.9
    r586 r587  
    155155    char *lbl = alloca (strlen (func_label) + 8);
    156156    strcpy (lbl, "__POST$");
     157    if (func_label[0] == '*')
     158        func_label++;
    157159    strcat (lbl, func_label);
    158160    ASM_OUTPUT_LABEL (f, lbl);
Note: See TracChangeset for help on using the changeset viewer.