tinycc/win32
Benjamin Oldenburg 95c17cae64 winnt.h: remove dead ARM64 CONTEXT fallback code
The fallback CONTEXT definition at lines 2073-2124 was unreachable dead code.
The guard '#if defined(__aarch64__) && !defined(_ARM64_CONTEXT_DECLARED)'
could never be true because:

1. Line 50-51: __aarch64__ automatically defines _ARM64_
2. Line 1426: #if defined(_ARM64_) || defined(__aarch64__) always enters
3. Line 1473: _ARM64_CONTEXT_DECLARED is always defined inside that block
4. Line 2073: The fallback guard is therefore always false

This 52-line duplicate was a maintenance hazard that could silently diverge
from the official ARM64_NT_CONTEXT definition. Remove it entirely.
2026-04-04 20:02:32 +07:00
..
examples Remove trailing whitespaces from source files 2026-04-04 20:02:32 +07:00
include winnt.h: remove dead ARM64 CONTEXT fallback code 2026-04-04 20:02:32 +07:00
lib arm64: support mnemonic win32 stack helpers 2026-04-04 20:02:32 +07:00
build-tcc.bat arm64: clarify inline asm support boundary 2026-04-04 20:02:32 +07:00
tcc-win32.txt win32: tcc-win32.txt: fixup 2 mingw includes note 2024-10-23 16:32:49 +03:00
test_arm64_backtrace.c Add ARM64 Windows coverage and fix native run guard 2026-04-04 20:02:31 +07:00
test_arm64_inline_asm.c Add ARM64 Windows coverage and fix native run guard 2026-04-04 20:02:31 +07:00
test_arm64_libtcc_context.c Fix Windows ARM64 runtime regressions and coverage 2026-04-04 20:02:31 +07:00
test_arm64_libtcc_context.S arm64: support mnemonic win32 stack helpers 2026-04-04 20:02:32 +07:00
test_arm64.c Add and stabilize Windows ARM64 support 2026-04-04 20:02:31 +07:00
test_pe_field_alignment.c Fix Windows ARM64 runtime regressions and coverage 2026-04-04 20:02:31 +07:00
test_pe_field_alignment.ref Fix Windows ARM64 runtime regressions and coverage 2026-04-04 20:02:31 +07:00
test_rstdin.c Fix Windows ARM64 runtime regressions 2026-04-04 20:02:31 +07:00
test_run_argv.c Fix Windows ARM64 runtime regressions and coverage 2026-04-04 20:02:31 +07:00
test_run_argv.ref Fix Windows ARM64 runtime regressions and coverage 2026-04-04 20:02:31 +07:00
test_run_exit.c Fix Windows ARM64 runtime regressions and coverage 2026-04-04 20:02:31 +07:00
test_run_stdin.c Fix Windows ARM64 runtime regressions and coverage 2026-04-04 20:02:31 +07:00
test_run_stdin.ref Fix Windows ARM64 runtime regressions and coverage 2026-04-04 20:02:31 +07:00