From a2c69e188f498719df3aeea0cc55179582e3d7eb Mon Sep 17 00:00:00 2001
From: whh8b <whh8b@git.zephyr-software.com>
Date: Wed, 17 Feb 2016 04:20:13 +0000
Subject: [PATCH] Add RetargetPin() and allow AddressDollop() to disallow
 coalescing.

---
 include/zipr_plugin.h | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/include/zipr_plugin.h b/include/zipr_plugin.h
index 4155332..69810cc 100644
--- a/include/zipr_plugin.h
+++ b/include/zipr_plugin.h
@@ -31,7 +31,7 @@ class ZiprPluginInterface_t
 		{
 		}
 
-		virtual ZiprPreference AddressDollop(const Dollop_t *dollop, const RangeAddress_t &source, Range_t &place)
+		virtual ZiprPreference AddressDollop(const Dollop_t *dollop, const RangeAddress_t &source, Range_t &place, bool &coalesce)
 		{
 			return None;
 		}
@@ -58,6 +58,11 @@ class ZiprPluginInterface_t
 		{
 			return new ZiprOptionsNamespace_t("");
 		}
+
+		virtual ZiprPreference RetargetPin(const RangeAddress_t &, const Zipr_SDK::Dollop_t *, RangeAddress_t &)
+		{
+			return None;
+		}
 };
 
 }
-- 
GitLab