dotgnu-pnet
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pnet-developers] [bugs #10910] Libjit byte store bug


From: Rhys Weatherley
Subject: [Pnet-developers] [bugs #10910] Libjit byte store bug
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1) Gecko/20020826

This mail is an automated notification from the bugs tracker
 of the project: DotGNU Portable.NET.

/**************************************************************************/
[bugs #10910] Latest Modifications:

Changes by: 
                Rhys Weatherley <address@hidden>
'Date: 
                Fri 11/05/2004 at 04:02 (GMT)

            What     | Removed                   | Added
---------------------------------------------------------------------------
          Resolution | None                      | Fixed
              Status | Open                      | Closed


------------------ Additional Follow-up Comments ----------------------------
Patch applied - 5 Nov 2004.  Good catch!






/**************************************************************************/
[bugs #10910] Full Item Snapshot:

URL: <http://savannah.gnu.org/bugs/?func=detailitem&item_id=10910>
Project: DotGNU Portable.NET
Submitted by: 0
On: Thu 11/04/2004 at 20:51

Category:  None
Severity:  5 - Average
Item Group:  None
Resolution:  Fixed
Privacy:  Public
Assigned to:  None
Status:  Closed


Summary:  Libjit byte store bug

Original Submission:  The following program does not print the same thing for 
WriteLn(x) and WriteLn(a).  The problem is that when doing a store, the type of 
the source is used instead of the type of the destination.  Patch is attached.

program loadb;

Var a : Byte;

Procedure run;
Var x :  Integer;
begin
   x := a;
   WriteLn(x);
   WriteLn(a);
end;

begin
   a := 250;
   run;
end.


Follow-up Comments
------------------


-------------------------------------------------------
Date: Fri 11/05/2004 at 04:02       By: Rhys Weatherley <rweather>
Patch applied - 5 Nov 2004.  Good catch!






File Attachments
-------------------

-------------------------------------------------------
Date: Thu 11/04/2004 at 20:51  Name: jit.patch  Size: 407B   By: None
Patch to use destination type for store
http://savannah.gnu.org/bugs/download.php?item_id=10910&amp;item_file_id=1838






For detailed info, follow this link:
<http://savannah.gnu.org/bugs/?func=detailitem&item_id=10910>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

[Prev in Thread] Current Thread [Next in Thread]