vmm: cpu: fix broken URL

Fix broken URL reported by Lychee. The binutils-gdb github repo no
longer exists. Use the equivalent sourceware.org link.

Signed-off-by: Anirudh Rayabharam <anrayabh@microsoft.com>
This commit is contained in:
Anirudh Rayabharam
2026-03-30 13:49:08 +00:00
committed by Bo Chen
parent 9b9950335f
commit cbe7018f84

View File

@@ -2762,7 +2762,7 @@ impl Debuggable for CpuManager {
];
// GDB exposes 32-bit eflags instead of 64-bit rflags.
// https://github.com/bminor/binutils-gdb/blob/master/gdb/features/i386/64bit-core.xml
// https://sourceware.org/git/?p=binutils-gdb.git;a=blob;f=gdb/features/i386/64bit-core.xml
let eflags = gregs.get_rflags() as u32;
let rip = gregs.get_rip();