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];
996
996
sprintf (LABEL, "*%s%ld", "lASAN", (long)(NUM));\
997
997
else if (strcmp ("LTRAMP", PREFIX) == 0) \
998
998
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) \
1000
1001
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) \
1002
1004
sprintf (LABEL, "*%s%ld", "lsrc_loc_impl", (long)(NUM));\
1003
1005
else \
1004
1006
sprintf (LABEL, "*%s%ld", PREFIX, (long)(NUM)); \
You can’t perform that action at this time.
0 commit comments