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: anonymous
Subject: [Pnet-developers] [bugs #10910] Libjit byte store bug
User-agent: Mozilla/5.0 (X11; U; Linux ppc; en-US; rv:1.7.3) Gecko/20041007 Galeon/1.3.17 (Debian package 1.3.17-2)

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




/**************************************************************************/
[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/04 at 15:51

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


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.






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

-------------------------------------------------------
Date: Thu 11/04/04 at 15: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]