[Lldb-commits] [lldb] r139569 - /lldb/trunk/source/Target/Target.cpp
Johnny Chen
johnny.chen at apple.com
Mon Sep 12 18:15:36 PDT 2011
Author: johnny
Date: Mon Sep 12 20:15:36 2011
New Revision: 139569
URL: http://llvm.org/viewvc/llvm-project?rev=139569&view=rev
Log:
Fix compiler warning.
Modified:
lldb/trunk/source/Target/Target.cpp
Modified: lldb/trunk/source/Target/Target.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Target.cpp?rev=139569&r1=139568&r2=139569&view=diff
==============================================================================
--- lldb/trunk/source/Target/Target.cpp (original)
+++ lldb/trunk/source/Target/Target.cpp Mon Sep 12 20:15:36 2011
@@ -335,6 +335,9 @@
WatchpointLocationSP wp_loc_sp;
if (addr == LLDB_INVALID_ADDRESS || size == 0 || GetProcessSP())
return wp_loc_sp;
+
+ // FIXME: Add implmenetation.
+ return wp_loc_sp;
}
void
More information about the lldb-commits
mailing list