<!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 gcc-testing (2010-05-27)</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>2010-05-27 Joel Sherrill <joel.sherrilL@OARcorp.com>

        * CoverageReaderTSIM.cc: Coverage byte is in hexadecimal.
        * Target_sparc.cc: Add annulled form of branches.
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//gcc-testing/covoar/ChangeLog.diff?r1=text&tr1=1.10&r2=text&tr2=1.11&diff_format=h">M</a></td><td width='1%'>1.11</td><td width='100%'>covoar/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//gcc-testing/covoar/CoverageReaderTSIM.cc.diff?r1=text&tr1=1.3&r2=text&tr2=1.4&diff_format=h">M</a></td><td width='1%'>1.4</td><td width='100%'>covoar/CoverageReaderTSIM.cc</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//gcc-testing/covoar/Target_sparc.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/Target_sparc.cc</td></tr>
</table>
<pre>
<font color='#006600'>diff -u gcc-testing/covoar/ChangeLog:1.10 gcc-testing/covoar/ChangeLog:1.11
--- gcc-testing/covoar/ChangeLog:1.10   Thu May 27 14:32:03 2010
+++ gcc-testing/covoar/ChangeLog        Thu May 27 16:33:23 2010
</font><font color='#997700'>@@ -1,3 +1,8 @@
</font><font color='#000088'>+2010-05-27    Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+       * CoverageReaderTSIM.cc: Coverage byte is in hexadecimal.
+       * Target_sparc.cc: Add annulled form of branches.
+
</font> 2010-05-27        Jennifer Averett <Jennifer.Averett@OARcorp.com>
 
        * ReportsHtml.cc: Modified to correctly sort of numeric values.

<font color='#006600'>diff -u gcc-testing/covoar/CoverageReaderTSIM.cc:1.3 gcc-testing/covoar/CoverageReaderTSIM.cc:1.4
--- gcc-testing/covoar/CoverageReaderTSIM.cc:1.3        Wed May 26 18:19:52 2010
+++ gcc-testing/covoar/CoverageReaderTSIM.cc    Thu May 27 16:33:23 2010
</font><font color='#997700'>@@ -65,7 +65,7 @@
</font> 
       for (i=0; i < 0x80; i+=4) {
         unsigned int a;
<font color='#880000'>-        status = fscanf( coverageFile, "%d", &cover );
</font><font color='#000088'>+        status = fscanf( coverageFile, "%x", &cover );
</font>   if (status == EOF || status == 0) {
           fprintf(
             stderr,

<font color='#006600'>diff -u gcc-testing/covoar/Target_sparc.cc:1.1 gcc-testing/covoar/Target_sparc.cc:1.2
--- gcc-testing/covoar/Target_sparc.cc:1.1      Mon May 24 15:07:08 2010
+++ gcc-testing/covoar/Target_sparc.cc  Thu May 27 16:33:23 2010
</font><font color='#997700'>@@ -20,21 +20,37 @@
</font>     TargetBase( targetName )
   {
     branchInstructions.push_back("bn");
<font color='#000088'>+    branchInstructions.push_back("bn,a");
</font>     branchInstructions.push_back("be");
<font color='#000088'>+    branchInstructions.push_back("be,a");
</font>     branchInstructions.push_back("ble");
<font color='#000088'>+    branchInstructions.push_back("ble,a");
</font>     branchInstructions.push_back("bl");
<font color='#000088'>+    branchInstructions.push_back("bl,a");
</font>     branchInstructions.push_back("bleu");
<font color='#000088'>+    branchInstructions.push_back("bleu,a");
</font>     branchInstructions.push_back("bcs");
<font color='#000088'>+    branchInstructions.push_back("bcs,a");
</font>     branchInstructions.push_back("bneg");
<font color='#000088'>+    branchInstructions.push_back("bneg,a");
</font>     branchInstructions.push_back("bvs");
<font color='#000088'>+    branchInstructions.push_back("bvs,a");
</font>     branchInstructions.push_back("ba");
<font color='#000088'>+    branchInstructions.push_back("ba,a");
</font>     branchInstructions.push_back("bne");
<font color='#000088'>+    branchInstructions.push_back("bne,a");
</font>     branchInstructions.push_back("bg");
<font color='#000088'>+    branchInstructions.push_back("bg,a");
</font>     branchInstructions.push_back("bge");
<font color='#000088'>+    branchInstructions.push_back("bge,a");
</font>     branchInstructions.push_back("bgu");
<font color='#000088'>+    branchInstructions.push_back("bgu,a");
</font>     branchInstructions.push_back("bcc");
<font color='#000088'>+    branchInstructions.push_back("bcc,a");
</font>     branchInstructions.push_back("bpos");
<font color='#000088'>+    branchInstructions.push_back("bpos,a");
</font>     branchInstructions.push_back("bvc");
<font color='#000088'>+    branchInstructions.push_back("bvc,a");
</font>   
     branchInstructions.sort();<span style="background-color: #FF0000">    </span>
   }
</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>