Author: Benjamin Kramer Date: 2026-01-30T11:06:45+01:00 New Revision: 3bf2c8347e04ba48dad1a7d73c5dd3b5e6dc8b7c
URL: https://github.com/llvm/llvm-project/commit/3bf2c8347e04ba48dad1a7d73c5dd3b5e6dc8b7c DIFF: https://github.com/llvm/llvm-project/commit/3bf2c8347e04ba48dad1a7d73c5dd3b5e6dc8b7c.diff LOG: [lldb] Clean up #includes. NFC. Added: Modified: lldb/source/Plugins/Process/scripted/ScriptedFrame.cpp Removed: ################################################################################ diff --git a/lldb/source/Plugins/Process/scripted/ScriptedFrame.cpp b/lldb/source/Plugins/Process/scripted/ScriptedFrame.cpp index 7462c467eb7da..ab7f70efb4bd4 100644 --- a/lldb/source/Plugins/Process/scripted/ScriptedFrame.cpp +++ b/lldb/source/Plugins/Process/scripted/ScriptedFrame.cpp @@ -9,24 +9,22 @@ #include "ScriptedFrame.h" #include "Plugins/Process/Utility/RegisterContextMemory.h" -#include "lldb/API/SBDeclaration.h" #include "lldb/Core/Address.h" #include "lldb/Core/Debugger.h" #include "lldb/Core/Module.h" #include "lldb/Core/ModuleList.h" -#include "lldb/Host/FileSystem.h" #include "lldb/Interpreter/Interfaces/ScriptedFrameInterface.h" +#include "lldb/Interpreter/Interfaces/ScriptedInterface.h" #include "lldb/Interpreter/Interfaces/ScriptedThreadInterface.h" #include "lldb/Interpreter/ScriptInterpreter.h" -#include "lldb/Symbol/CompileUnit.h" #include "lldb/Symbol/SymbolContext.h" -#include "lldb/Symbol/SymbolFile.h" #include "lldb/Symbol/VariableList.h" +#include "lldb/Target/DynamicRegisterInfo.h" #include "lldb/Target/ExecutionContext.h" -#include "lldb/Target/Process.h" -#include "lldb/Target/RegisterContext.h" +#include "lldb/Target/StackFrame.h" #include "lldb/Target/Thread.h" #include "lldb/Utility/DataBufferHeap.h" +#include "lldb/Utility/LLDBAssert.h" #include "lldb/Utility/LLDBLog.h" #include "lldb/Utility/Log.h" #include "lldb/Utility/StructuredData.h" _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
