summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-09-13 01:15:36 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-09-13 01:15:36 +0000
commit7313a648e96c2691f57ef0866d0febb599af99cd (patch)
treecd0a90dc6f4d03eaf191be71d03ccdd3c9d26b6f
parent02ae341043ef382714cfc4639312b7dabb4155b8 (diff)
downloadbcm5719-llvm-7313a648e96c2691f57ef0866d0febb599af99cd.tar.gz
bcm5719-llvm-7313a648e96c2691f57ef0866d0febb599af99cd.zip
Fix compiler warning.
llvm-svn: 139569
-rw-r--r--lldb/source/Target/Target.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/source/Target/Target.cpp b/lldb/source/Target/Target.cpp
index ac50ef1cd67..78f16bf9d83 100644
--- a/lldb/source/Target/Target.cpp
+++ b/lldb/source/Target/Target.cpp
@@ -335,6 +335,9 @@ Target::CreateWatchpointLocation(lldb::addr_t addr, size_t size, uint32_t type)
WatchpointLocationSP wp_loc_sp;
if (addr == LLDB_INVALID_ADDRESS || size == 0 || GetProcessSP())
return wp_loc_sp;
+
+ // FIXME: Add implmenetation.
+ return wp_loc_sp;
}
void
OpenPOWER on IntegriCloud