[llvm] [MC][AsmPrinter] Introduce llvm_reg_offset pseudo cfi instruction. (PR #125104)
Mikhail Gudim via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 11 01:22:53 PST 2025
================
@@ -265,6 +265,8 @@ void CFIInstrInserter::calculateOutgoingCFAInfo(MBBCFAInfo &MBBInfo) {
case MCCFIInstruction::OpLabel:
case MCCFIInstruction::OpValOffset:
break;
+ case MCCFIInstruction::OpLLVMRegOffset:
+ llvm_unreachable("Can't handle llvm_reg_offset yet!");
----------------
mgudim wrote:
Nothing emits `OpLLVMRegOffset` yet, I just added this to avoid a warning.
https://github.com/llvm/llvm-project/pull/125104
More information about the llvm-commits
mailing list