diff options
author | Enrico Granata <egranata@apple.com> | 2012-07-13 23:55:22 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-07-13 23:55:22 +0000 |
commit | 1c5431af8138b6c1b847eae76aae66e60fa31e52 (patch) | |
tree | 828107e626983ab69cba7d35651e72f2b3fb7fb4 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | |
parent | 3d604ab9338af222187aff2b386308fab5d4dd7d (diff) | |
download | bcm5719-llvm-1c5431af8138b6c1b847eae76aae66e60fa31e52.tar.gz bcm5719-llvm-1c5431af8138b6c1b847eae76aae66e60fa31e52.zip |
Fixing a buildbot issue in GDBRemoteCommunicationServer due to an undefined constant in latest commit
llvm-svn: 160208
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp index 70d73d3c38a..115d55774c7 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp @@ -223,7 +223,7 @@ GDBRemoteCommunicationServer::Handle_qHostInfo (StringExtractorGDBRemote &packet 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;"); |