File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -996,6 +996,10 @@ 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) \
1000
+ sprintf (LABEL, "*%s%ld", "lcontract_violation", (long)(NUM));\
1001
+ else if (strcmp ("Lsrc_loc_impl.", PREFIX) == 0) \
1002
+ sprintf (LABEL, "*%s%ld", "lsrc_loc_impl", (long)(NUM));\
999
1003
else \
1000
1004
sprintf (LABEL, "*%s%ld", PREFIX, (long)(NUM)); \
1001
1005
} while (0)
Original file line number Diff line number Diff line change @@ -1999,7 +1999,7 @@ static tree
1999
1999
build_contracts_source_location (location_t loc)
2000
2000
{
2001
2001
tree impl_ = contracts_tu_local_named_var
2002
- (loc, " Lsrc_loc_impl. " ,
2002
+ (loc, " Lsrc_loc_impl" ,
2003
2003
get_contracts_source_location_impl_type (), /* is_const*/ true );
2004
2004
2005
2005
DECL_INITIAL (impl_) = build_contracts_source_location_impl (loc);
@@ -2255,7 +2255,7 @@ build_contract_violation_P2900 (tree contract, bool is_const)
2255
2255
TREE_STATIC (ctor) = true ;
2256
2256
2257
2257
tree viol_ = contracts_tu_local_named_var
2258
- (EXPR_LOCATION (contract), " Lcontract_violation. " ,
2258
+ (EXPR_LOCATION (contract), " Lcontract_violation" ,
2259
2259
get_pseudo_contract_violation_type (), /* is_const*/ true );
2260
2260
2261
2261
TREE_CONSTANT (viol_) = is_const;
You can’t perform that action at this time.
0 commit comments