File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
llvm/lib/ExecutionEngine/JITLink Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -523,7 +523,7 @@ class ELFLinkGraphBuilder_aarch64 : public ELFLinkGraphBuilder<ELFT> {
523
523
case ELFTLSDescCall:
524
524
return " ELFTLSDescCall" ;
525
525
default :
526
- return getGenericEdgeKindName (static_cast <Edge::Kind>(R) );
526
+ return getGenericEdgeKindName (R );
527
527
}
528
528
}
529
529
Original file line number Diff line number Diff line change @@ -545,7 +545,7 @@ class MachOLinkGraphBuilder_arm64 : public MachOLinkGraphBuilder {
545
545
case MachONegDelta64:
546
546
return " MachONegDelta64" ;
547
547
default :
548
- return getGenericEdgeKindName (static_cast <Edge::Kind>(R) );
548
+ return getGenericEdgeKindName (R );
549
549
}
550
550
}
551
551
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ const char *getEdgeKindName(Edge::Kind R) {
85
85
case RequestTLSDescEntryAndTransformToPageOffset12:
86
86
return " RequestTLSDescEntryAndTransformToPageOffset12" ;
87
87
default :
88
- return getGenericEdgeKindName (static_cast <Edge::Kind>(R) );
88
+ return getGenericEdgeKindName (R );
89
89
}
90
90
}
91
91
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ const char *getEdgeKindName(Edge::Kind K) {
137
137
case RequestTLSDescInGOTAndTransformToDelta34:
138
138
return " RequestTLSDescInGOTAndTransformToDelta34" ;
139
139
default :
140
- return getGenericEdgeKindName (static_cast <Edge::Kind>(K) );
140
+ return getGenericEdgeKindName (K );
141
141
}
142
142
}
143
143
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ const char *getEdgeKindName(Edge::Kind K) {
75
75
case RequestTLVPAndTransformToPCRel32TLVPLoadREXRelaxable:
76
76
return " RequestTLVPAndTransformToPCRel32TLVPLoadREXRelaxable" ;
77
77
default :
78
- return getGenericEdgeKindName (static_cast <Edge::Kind>(K) );
78
+ return getGenericEdgeKindName (K );
79
79
}
80
80
}
81
81
You can’t perform that action at this time.
0 commit comments