[lldb] Fix dead link in JIT debugging doc
authorDavid Spickett <david.spickett@linaro.org>
Thu, 15 Jun 2023 08:38:08 +0000 (08:38 +0000)
committerDavid Spickett <david.spickett@linaro.org>
Thu, 15 Jun 2023 08:39:01 +0000 (08:39 +0000)
Thanks to Zhang on Discord for spotting this.

llvm/docs/DebuggingJITedCode.rst

index 8e8d1ff..5719c71 100644 (file)
@@ -10,7 +10,7 @@ quite painful.  Debuggers generally read debug information from object files on
 disk, but for JITed code there is no such file to look for.
 
 In order to hand over the necessary debug info, `GDB established an
-interface <https://sourceware.org/gdb/current/onlinedocs/gdb/JIT-Interface.html>`_
+interface <https://sourceware.org/gdb/onlinedocs/gdb/JIT-Interface.html>`_
 for registering JITed code with debuggers. LLDB implements it in the
 JITLoaderGDB plugin.  On the JIT side, LLVM MCJIT does implement the interface
 for ELF object files.