Skip to content

Commit

Permalink
Obliterate LLDB_CONFIGURATION_BUILDANDINTEGRATION
Browse files Browse the repository at this point in the history
Summary:
With the XCode project gone, there doesn't seem to be anything setting
this macro anymore -- and the macro wasn't doing much anyway.

Reviewers: jingham, sgraenitz

Subscribers: emaste, lldb-commits

Differential Revision: https://reviews.llvm.org/D66742

llvm-svn: 371018
  • Loading branch information
labath committed Sep 5, 2019
1 parent c3bea40 commit 7790858
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 20 deletions.
6 changes: 0 additions & 6 deletions lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
Expand Up @@ -37,9 +37,6 @@
using namespace lldb;
using namespace lldb_private;

// We disable the tracing of ptrace calls for integration builds to avoid the
// additional indirection and checks.
#ifndef LLDB_CONFIGURATION_BUILDANDINTEGRATION
// Wrapper for ptrace to catch errors and log calls.

const char *Get_PT_IO_OP(int op) {
Expand Down Expand Up @@ -137,9 +134,6 @@ extern long PtraceWrapper(int req, lldb::pid_t pid, void *addr, int data) {

#define PTRACE(req, pid, addr, data) \
PtraceWrapper((req), (pid), (addr), (data), #req, __FILE__, __LINE__)
#else
PtraceWrapper((req), (pid), (addr), (data))
#endif

// Static implementations of ProcessMonitor::ReadMemory and
// ProcessMonitor::WriteMemory. This enables mutual recursion between these
Expand Down
7 changes: 0 additions & 7 deletions lldb/source/Plugins/Process/POSIX/CrashReason.cpp
Expand Up @@ -229,11 +229,6 @@ std::string GetCrashReasonString(CrashReason reason, lldb::addr_t fault_addr) {
}

const char *CrashReasonAsString(CrashReason reason) {
#ifdef LLDB_CONFIGURATION_BUILDANDINTEGRATION
// Just return the code in ascii for integration builds.
chcar str[8];
sprintf(str, "%d", reason);
#else
const char *str = nullptr;

switch (reason) {
Expand Down Expand Up @@ -315,8 +310,6 @@ const char *CrashReasonAsString(CrashReason reason) {
str = "eFloatSubscriptRange";
break;
}
#endif

return str;
}

Expand Down
7 changes: 0 additions & 7 deletions lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
Expand Up @@ -15,11 +15,6 @@ const char *ProcessMessage::PrintCrashReason() const {
}

const char *ProcessMessage::PrintKind(Kind kind) {
#ifdef LLDB_CONFIGURATION_BUILDANDINTEGRATION
// Just return the code in ascii for integration builds.
chcar str[8];
sprintf(str, "%d", reason);
#else
const char *str = nullptr;

switch (kind) {
Expand Down Expand Up @@ -60,8 +55,6 @@ const char *ProcessMessage::PrintKind(Kind kind) {
str = "eExecMessage";
break;
}
#endif

return str;
}

Expand Down

0 comments on commit 7790858

Please sign in to comment.