Skip to content

Commit c8c4428

Browse files
committed
[Xtensa] Minor fixes.
1 parent 343fdac commit c8c4428

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/Xtensa/Disassembler/XtensaDisassembler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ static DecodeStatus readInstruction16(ArrayRef<uint8_t> Bytes, uint64_t Address,
283283
}
284284

285285
if (!IsLittleEndian) {
286-
llvm_unreachable("Big-endian mode currently is not supported!");
286+
report_fatal_error("Big-endian mode currently is not supported!");
287287
} else {
288288
Insn = (Bytes[1] << 8) | Bytes[0];
289289
}

0 commit comments

Comments
 (0)