Skip to content

Commit 24581ea

Browse files
authored
Merge pull request #1968 from dcci/felicita
apple-llvm-split-commit: 807be824ea22fe76ffc2a0ecda6a7ec3f3669872 apple-llvm-split-dir: lldb/
2 parents d1bc08c + 4e034b0 commit 24581ea

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
@@ -1006,8 +1006,6 @@ enum PathType {
10061006
// mach-o file in LLDB.framework (MacOSX) exists
10071007
ePathTypeSupportExecutableDir, // Find LLDB support executable directory
10081008
// (debugserver, etc)
1009-
ePathTypeSupportFileDir, // Find LLDB support file directory
1010-
// (non-executable files)
10111009
ePathTypeHeaderDir, // Find LLDB header file directory
10121010
ePathTypePythonDir, // Find Python modules (PYTHONPATH) directory
10131011
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
@@ -82270,7 +82270,6 @@ SWIG_init(void) {
8227082270
SWIG_Python_SetConstant(d, "eGdbSignalBreakpoint",SWIG_From_int(static_cast< int >(lldb::eGdbSignalBreakpoint)));
8227182271
SWIG_Python_SetConstant(d, "ePathTypeLLDBShlibDir",SWIG_From_int(static_cast< int >(lldb::ePathTypeLLDBShlibDir)));
8227282272
SWIG_Python_SetConstant(d, "ePathTypeSupportExecutableDir",SWIG_From_int(static_cast< int >(lldb::ePathTypeSupportExecutableDir)));
82273-
SWIG_Python_SetConstant(d, "ePathTypeSupportFileDir",SWIG_From_int(static_cast< int >(lldb::ePathTypeSupportFileDir)));
8227482273
SWIG_Python_SetConstant(d, "ePathTypeHeaderDir",SWIG_From_int(static_cast< int >(lldb::ePathTypeHeaderDir)));
8227582274
SWIG_Python_SetConstant(d, "ePathTypePythonDir",SWIG_From_int(static_cast< int >(lldb::ePathTypePythonDir)));
8227682275
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
@@ -731,7 +731,6 @@ class _object : pass
731731
eGdbSignalBreakpoint = _lldb.eGdbSignalBreakpoint
732732
ePathTypeLLDBShlibDir = _lldb.ePathTypeLLDBShlibDir
733733
ePathTypeSupportExecutableDir = _lldb.ePathTypeSupportExecutableDir
734-
ePathTypeSupportFileDir = _lldb.ePathTypeSupportFileDir
735734
ePathTypeHeaderDir = _lldb.ePathTypeHeaderDir
736735
ePathTypePythonDir = _lldb.ePathTypePythonDir
737736
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)