Skip to content

Commit 4e034b0

Browse files
author
Davide Italiano
committed
[Core] Remove unused ePathTypeSupportFileDir [downstream-only]
apple-llvm-split-commit: 4fc9b942abb0e4d4a18a4cca101c78884b0af38d apple-llvm-split-dir: lldb/
1 parent cf69284 commit 4e034b0

File tree

4 files changed

+0
-5
lines changed

4 files changed

+0
-5
lines changed

lldb/include/lldb/lldb-enumerations.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,8 +1009,6 @@ enum PathType {
10091009
// mach-o file in LLDB.framework (MacOSX) exists
10101010
ePathTypeSupportExecutableDir, // Find LLDB support executable directory
10111011
// (debugserver, etc)
1012-
ePathTypeSupportFileDir, // Find LLDB support file directory
1013-
// (non-executable files)
10141012
ePathTypeHeaderDir, // Find LLDB header file directory
10151013
ePathTypePythonDir, // Find Python modules (PYTHONPATH) directory
10161014
ePathTypeLLDBSystemPlugins, // System plug-ins directory

lldb/scripts/Python/static-binding/LLDBWrapPython.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82272,7 +82272,6 @@ SWIG_init(void) {
8227282272
SWIG_Python_SetConstant(d, "eGdbSignalBreakpoint",SWIG_From_int(static_cast< int >(lldb::eGdbSignalBreakpoint)));
8227382273
SWIG_Python_SetConstant(d, "ePathTypeLLDBShlibDir",SWIG_From_int(static_cast< int >(lldb::ePathTypeLLDBShlibDir)));
8227482274
SWIG_Python_SetConstant(d, "ePathTypeSupportExecutableDir",SWIG_From_int(static_cast< int >(lldb::ePathTypeSupportExecutableDir)));
82275-
SWIG_Python_SetConstant(d, "ePathTypeSupportFileDir",SWIG_From_int(static_cast< int >(lldb::ePathTypeSupportFileDir)));
8227682275
SWIG_Python_SetConstant(d, "ePathTypeHeaderDir",SWIG_From_int(static_cast< int >(lldb::ePathTypeHeaderDir)));
8227782276
SWIG_Python_SetConstant(d, "ePathTypePythonDir",SWIG_From_int(static_cast< int >(lldb::ePathTypePythonDir)));
8227882277
SWIG_Python_SetConstant(d, "ePathTypeLLDBSystemPlugins",SWIG_From_int(static_cast< int >(lldb::ePathTypeLLDBSystemPlugins)));

lldb/scripts/Python/static-binding/lldb.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,6 @@ class _object : pass
733733
eGdbSignalBreakpoint = _lldb.eGdbSignalBreakpoint
734734
ePathTypeLLDBShlibDir = _lldb.ePathTypeLLDBShlibDir
735735
ePathTypeSupportExecutableDir = _lldb.ePathTypeSupportExecutableDir
736-
ePathTypeSupportFileDir = _lldb.ePathTypeSupportFileDir
737736
ePathTypeHeaderDir = _lldb.ePathTypeHeaderDir
738737
ePathTypePythonDir = _lldb.ePathTypePythonDir
739738
ePathTypeLLDBSystemPlugins = _lldb.ePathTypeLLDBSystemPlugins

lldb/source/API/SBHostOS.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ SBFileSpec SBHostOS::GetLLDBPath(lldb::PathType path_type) {
8080
fspec = GetClangResourceDir();
8181
break;
8282

83-
case ePathTypeSupportFileDir:
8483
case ePathTypeSwiftDir:
8584
break;
8685
}

0 commit comments

Comments
 (0)