File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/lib/ExecutionEngine/JITLink Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -194,15 +194,15 @@ struct ArmRelocation {
194
194
Error makeUnexpectedOpcodeError (const LinkGraph &G, const ThumbRelocation &R,
195
195
Edge::Kind Kind) {
196
196
return make_error<JITLinkError>(
197
- formatv (" Invalid opcode [ 0x {0:x4}, 0x {1:x4} ] for relocation: {2}" ,
197
+ formatv (" Invalid opcode [ {0:x4}, {1:x4} ] for relocation: {2}" ,
198
198
static_cast <uint16_t >(R.Hi ), static_cast <uint16_t >(R.Lo ),
199
199
G.getEdgeKindName (Kind)));
200
200
}
201
201
202
202
Error makeUnexpectedOpcodeError (const LinkGraph &G, const ArmRelocation &R,
203
203
Edge::Kind Kind) {
204
204
return make_error<JITLinkError>(
205
- formatv (" Invalid opcode [ 0x {0:x8} ] for relocation: {1}" ,
205
+ formatv (" Invalid opcode {0:x8} for relocation: {1}" ,
206
206
static_cast <uint32_t >(R.Wd ), G.getEdgeKindName (Kind)));
207
207
}
208
208
You can’t perform that action at this time.
0 commit comments