3 Oct
2007
3 Oct
'07
9:39 a.m.
The following two programs fail on i386-apple-darwin when using gpc version 20051116 with gcc-3.4.5, but not when using gpc version 20070904 with gcc-4.1.2. This was reported by Stéphane Nicolet on the mac-pascal mailiong list. Does someone remember if this is a back-end or front-end problem ? {$mac-pascal} program modbug; var a,b: integer; c: boolean; begin a := 22; b := 12; c:= ((a - 15) mod b) = (b-1) end. {$borland-pascal} program modbug; var a,b: integer; c: boolean; begin a := 22; b := 12; c:= ((a - 15) mod b) = (b-1) end. Regards, Adriaan van Os
6892
Age (days ago)
6893
Last active (days ago)
2 comments
3 participants
participants (3)
-
Adriaan van Os -
Gale Paeper -
Pascal Viandier