[Lldb-commits] [lldb] r160208 - /lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
Enrico Granata
egranata at apple.com
Fri Jul 13 16:55:22 PDT 2012
Author: enrico
Date: Fri Jul 13 18:55:22 2012
New Revision: 160208
URL: http://llvm.org/viewvc/llvm-project?rev=160208&view=rev
Log:
Fixing a buildbot issue in GDBRemoteCommunicationServer due to an undefined constant in latest commit
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp?rev=160208&r1=160207&r2=160208&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp Fri Jul 13 18:55:22 2012
@@ -223,7 +223,7 @@
if (sub != LLDB_INVALID_CPUTYPE)
response.Printf ("cpusubtype:%u;", sub);
- if (cpu == CPU_TYPE_ARM)
+ if (cpu == ArchSpec::kCore_arm_any)
response.Printf("watchpoint_exceptions_received:before;"); // On armv7 we use "synchronous" watchpoints which means the exception is delivered before the instruction executes.
else
response.Printf("watchpoint_exceptions_received:after;");
More information about the lldb-commits
mailing list