Eugene.Zelenko created this revision.
Eugene.Zelenko added reviewers: brucem, labath, clayborg.
Eugene.Zelenko added a subscriber: lldb-commits.
Eugene.Zelenko set the repository for this revision to rL LLVM.
Looks like MSVC build failure didn't relate to my changes, since I didn't
remove lldb/Expression/UtilityFunction.h from any of files changed in rL250966.
May be source/Plugins/LanguageRuntime was not properly rebuilt after other
change?
Repository:
rL LLVM
http://reviews.llvm.org/D13968
Files:
source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
Index:
source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
===================================================================
---
source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
+++
source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
@@ -14,18 +14,18 @@
// C++ Includes
#include <map>
#include <vector>
+
// Other libraries and framework includes
// Project includes
#include "lldb/lldb-public.h"
#include "lldb/Host/Mutex.h"
+#include "lldb/Expression/UtilityFunction.h"
-
namespace lldb_private
{
class AppleObjCTrampolineHandler {
public:
-
AppleObjCTrampolineHandler (const lldb::ProcessSP &process_sp,
const lldb::ModuleSP &objc_module_sp);
@@ -44,7 +44,6 @@
return (addr == m_msg_forward_addr || addr ==
m_msg_forward_stret_addr);
}
-
struct DispatchFunction {
public:
typedef enum
@@ -92,7 +91,6 @@
lldb::addr_t code_start;
};
-
class VTableRegion
{
public:
@@ -189,7 +187,6 @@
lldb::break_id_t m_trampolines_changed_bp_id;
region_collection m_regions;
lldb::ModuleSP m_objc_module_sp;
-
};
static const DispatchFunction g_dispatch_functions[];
@@ -205,10 +202,8 @@
lldb::addr_t m_msg_forward_addr;
lldb::addr_t m_msg_forward_stret_addr;
std::unique_ptr<AppleObjCVTables> m_vtables_ap;
-
-
};
-} // using namespace lldb_private
+} // namespace lldb_private
-#endif // lldb_AppleObjCTrampolineHandler_h_
+#endif // lldb_AppleObjCTrampolineHandler_h_
Index: source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
===================================================================
--- source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
+++ source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
@@ -14,18 +14,18 @@
// C++ Includes
#include <map>
#include <vector>
+
// Other libraries and framework includes
// Project includes
#include "lldb/lldb-public.h"
#include "lldb/Host/Mutex.h"
+#include "lldb/Expression/UtilityFunction.h"
-
namespace lldb_private
{
class AppleObjCTrampolineHandler {
public:
-
AppleObjCTrampolineHandler (const lldb::ProcessSP &process_sp,
const lldb::ModuleSP &objc_module_sp);
@@ -44,7 +44,6 @@
return (addr == m_msg_forward_addr || addr == m_msg_forward_stret_addr);
}
-
struct DispatchFunction {
public:
typedef enum
@@ -92,7 +91,6 @@
lldb::addr_t code_start;
};
-
class VTableRegion
{
public:
@@ -189,7 +187,6 @@
lldb::break_id_t m_trampolines_changed_bp_id;
region_collection m_regions;
lldb::ModuleSP m_objc_module_sp;
-
};
static const DispatchFunction g_dispatch_functions[];
@@ -205,10 +202,8 @@
lldb::addr_t m_msg_forward_addr;
lldb::addr_t m_msg_forward_stret_addr;
std::unique_ptr<AppleObjCVTables> m_vtables_ap;
-
-
};
-} // using namespace lldb_private
+} // namespace lldb_private
-#endif // lldb_AppleObjCTrampolineHandler_h_
+#endif // lldb_AppleObjCTrampolineHandler_h_
_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits