File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -996,9 +996,11 @@ extern GTY(()) section * darwin_sections[NUM_DARWIN_SECTIONS];
996996 sprintf (LABEL, "*%s%ld", "lASAN", (long)(NUM));\
997997 else if (strcmp ("LTRAMP", PREFIX) == 0) \
998998 sprintf (LABEL, "*%s%ld", "lTRAMP", (long)(NUM));\
999- else if (strcmp ("Lcontract_violation", PREFIX) == 0) \
999+ else if (strlen (PREFIX) == 19 \
1000+ && strcmp ("Lcontract_violation", PREFIX) == 0) \
10001001 sprintf (LABEL, "*%s%ld", "lcontract_violation", (long)(NUM));\
1001- else if (strcmp ("Lsrc_loc_impl.", PREFIX) == 0) \
1002+ else if (strlen (PREFIX) == 13 \
1003+ && strcmp ("Lsrc_loc_impl", PREFIX) == 0) \
10021004 sprintf (LABEL, "*%s%ld", "lsrc_loc_impl", (long)(NUM));\
10031005 else \
10041006 sprintf (LABEL, "*%s%ld", PREFIX, (long)(NUM)); \
You can’t perform that action at this time.
0 commit comments