bugDotGNU Portable.NET - Bugs: bug #10910, Libjit byte store bug

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #10910: Libjit byte store bug

Submitter:  None
Submitted:  Thu 04 Nov 2004 08:51:22 PM UTC
   
 
Category:  None Severity:  3 - Normal
Item Group:  None Status:  Fixed
Privacy:  Public Assigned to:  None
Open/Closed:  Closed

Fri 05 Nov 2004 04:02:06 AM UTC, comment #1: 

Patch applied - 5 Nov 2004.  Good catch!

Rhys Weatherley <rweather>
Group administrator
Thu 04 Nov 2004 08:51:22 PM UTC, 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.

Anonymous

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attached Files
file #921:  jit.patch added by None (407B - text/x-patch - Patch to use destination type for store)

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

 

Follow 3 latest changes.

Date Changed by Updated Field Previous Value => Replaced by
2004-11-05 rweather StatusNone Fixed
    Open/ClosedOpen Closed
2004-11-04 None Attached File- Added jit.patch, #1838

Back to the top

Powered by Savane 3.13-0329.
Corresponding source code