From 24b780ce74beec4ef457da479ac7ef7d3b649a3e Mon Sep 17 00:00:00 2001 From: David Spickett Date: Thu, 15 Jun 2023 08:38:08 +0000 Subject: [PATCH] [lldb] Fix dead link in JIT debugging doc Thanks to Zhang on Discord for spotting this. --- llvm/docs/DebuggingJITedCode.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/docs/DebuggingJITedCode.rst b/llvm/docs/DebuggingJITedCode.rst index 8e8d1ff00554..5719c71df4dd 100644 --- a/llvm/docs/DebuggingJITedCode.rst +++ b/llvm/docs/DebuggingJITedCode.rst @@ -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 `_ +interface `_ 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.