<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems-testing (2011-01-25)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>joel</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-01-25 Joel Sherrill <joel.sherrill@oarcorp.com>

        * ExecutableInfo.cc: Hack a shot at seeing if symbol is already known.
        If so, then say it has multiple ranges.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/covoar/ChangeLog.diff?r1=text&tr1=1.17&r2=text&tr2=1.18&diff_format=h">M</a></td><td width='1%'>1.18</td><td width='100%'>covoar/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems-testing/covoar/ExecutableInfo.cc.diff?r1=text&tr1=1.1&r2=text&tr2=1.2&diff_format=h">M</a></td><td width='1%'>1.2</td><td width='100%'>covoar/ExecutableInfo.cc</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems-testing/covoar/ChangeLog:1.17 rtems-testing/covoar/ChangeLog:1.18
--- rtems-testing/covoar/ChangeLog:1.17 Mon Jan 24 15:11:25 2011
+++ rtems-testing/covoar/ChangeLog      Tue Jan 25 14:48:36 2011
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2011-01-25    Joel Sherrill <joel.sherrill@oarcorp.com>
+
+       * ExecutableInfo.cc: Hack a shot at seeing if symbol is already known.
+       If so, then say it has multiple ranges.
+
</font> 2011-01-24        Joel Sherrill <joel.sherrilL@OARcorp.com>
 
        * CoverageReaderQEMU.cc: Finetune debug.

<font color='#006600'>diff -u rtems-testing/covoar/ExecutableInfo.cc:1.1 rtems-testing/covoar/ExecutableInfo.cc:1.2
--- rtems-testing/covoar/ExecutableInfo.cc:1.1  Mon May 24 15:07:08 2010
+++ rtems-testing/covoar/ExecutableInfo.cc      Tue Jan 25 14:48:36 2011
</font><font color='#997700'>@@ -90,19 +90,15 @@
</font>     uint32_t           highAddress
   )
   {
<font color='#880000'>-    CoverageMapBase* theMap = NULL;
</font><font color='#000088'>+    CoverageMapBase* theMap;
</font> 
<font color='#880000'>-    theMap = new CoverageMap( lowAddress, highAddress );
-
-    if (!theMap)
-      fprintf(
-        stderr, "Unable to create coverage map for %s\n",
-        symbolName.c_str()
-      );
-
-    else
</font><font color='#000088'>+    theMap = coverageMaps.find( symbolName );
+    if ( theMap == std::map.end() ) {
+      theMap = new CoverageMap( lowAddress, highAddress );
</font>       coverageMaps[ symbolName ] = theMap;
<font color='#880000'>-
</font><font color='#000088'>+    } else {
+      theMap->Add( lowAddress, highAddress );
+    }
</font>     return theMap;
   }
 
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>