mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-20 03:44:19 +08:00
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. |
||
|---|---|---|
| .. | ||
| examples | ||
| include | ||
| lib | ||
| build-tcc.bat | ||
| tcc-win32.txt | ||
| test_arm64_backtrace.c | ||
| test_arm64_inline_asm.c | ||
| test_arm64_libtcc_context.c | ||
| test_arm64_libtcc_context.S | ||
| test_arm64.c | ||
| test_pe_field_alignment.c | ||
| test_pe_field_alignment.ref | ||
| test_rstdin.c | ||
| test_run_argv.c | ||
| test_run_argv.ref | ||
| test_run_exit.c | ||
| test_run_stdin.c | ||
| test_run_stdin.ref | ||