[clang] [llvm] Fix Windows EH IP2State tables (remove +1 bias) (PR #144745)

Eli Friedman via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 11 09:44:18 PDT 2025


================
@@ -101,7 +101,8 @@ define void @f5() "frame-pointer"="all" {
 ; CHECK-NEXT:    .seh_endprologue
 ; CHECK-NEXT:    leaq -92(%rbp), %rcx
 ; CHECK-NEXT:    callq external
-; CHECK-NEXT:    nop
+; UEFI does not have SEH, so does not require NOP
+; WIN64-NEXT:    nop
----------------
efriedma-quic wrote:

This looks hand-edited; please regenerate with update_llc_test_checks.

https://github.com/llvm/llvm-project/pull/144745


More information about the llvm-commits mailing list