[clang] [compiler-rt] [llvm] Reland "[X86][AVX10.2] Support AVX10.2 option and VMPSADBW/VADDP[D,H,S] new instructions (#101452)" (PR #101616)
Evgenii Kudriashov via cfe-commits
cfe-commits at lists.llvm.org
Fri Aug 2 07:25:15 PDT 2024
================
@@ -223,6 +227,10 @@ InstructionContext RecognizableInstr::insnContext() const {
insnContext = EVEX_KB_U(IC_EVEX_XD);
else if (OpPrefix == X86Local::PS)
insnContext = EVEX_KB_U(IC_EVEX);
+ else {
+ errs() << "Instruction does not use a prefix: " << Name << "\n";
+ llvm_unreachable("Invalid prefix");
----------------
e-kud wrote:
Oh, I've asked myself some time ago if there is a difference between `llvm_unreachable` and `errs()`. The deal is in production build. The message from `llvm_unreachable` is not shown.
https://github.com/llvm/llvm-project/pull/101616
More information about the cfe-commits
mailing list