| Computers Forum Index » Computer Compilers - LCC » Bug with long long subtraction... |
|
Page 1 of 1 |
|
| Author |
Message |
| Colin Barker... |
Posted: Fri Aug 14, 2009 8:49 pm |
|
|
|
Guest
|
There is apparently still a problem with long long subtraction using lcc
win-32. The following code outputs -19 instead of 19. This is with the
version I downloaded 12 August 2009, "Compiled Sun May 10 11:28:45 2009"
according to the Help Information.
int main(void)
{
long long s = 59;
int z = 2;
int k = (s-z)/3;
(void)printf("k=%d\n", k);
return 1;
}
--
Colin |
|
|
| Back to top |
|
|
|
| jacob navia... |
Posted: Mon Aug 24, 2009 2:31 pm |
|
|
|
Guest
|
Colin Barker wrote:
Quote: There is apparently still a problem with long long subtraction using lcc
win-32. The following code outputs -19 instead of 19. This is with the
version I downloaded 12 August 2009, "Compiled Sun May 10 11:28:45 2009"
according to the Help Information.
int main(void)
{
long long s = 59;
int z = 2;
int k = (s-z)/3;
(void)printf("k=%d\n", k);
return 1;
}
--
Colin
Excuse me, I was in holidays. It has been fixed and I will upload it
this week.
jacob |
|
|
| Back to top |
|
|
|
| tea strainer... |
Posted: Sat Aug 29, 2009 1:29 am |
|
|
|
Guest
|
jacob navia wrote:
Quote: Excuse me, I was in holidays. It has been fixed and I will upload it
this week.
In my opinion this is completely unacceptable. Reputable, professional
software companies do not grind to a halt when one member of the tech
support team goes on vacation. I recommend you to arrange your employees'
leave so that there is always tech support cover throughout the year.
Regards, |
|
|
| Back to top |
|
|
|
| Keith Thompson... |
Posted: Sat Aug 29, 2009 2:18 am |
|
|
|
Guest
|
tea strainer <nospam at (no spam) nospam.com> writes:
Quote: jacob navia wrote:
Excuse me, I was in holidays. It has been fixed and I will upload it
this week.
In my opinion this is completely unacceptable. Reputable, professional
software companies do not grind to a halt when one member of the tech
support team goes on vacation. I recommend you to arrange your employees'
leave so that there is always tech support cover throughout the year.
The troll is back, and as usual, has nothing to say that is worth
refuting.
(jacob, if you watch carefully, you'll find that none of the "regs"
will defend "tea strainer"'s attack on you, despite your previous
false claims to the contrary.)
--
Keith Thompson (The_Other_Keith) kst-u at (no spam) mib.org <http://www.ghoti.net/~kst>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister" |
|
|
| Back to top |
|
|
|
| Gordon Burditt... |
Posted: Sat Aug 29, 2009 2:46 am |
|
|
|
Guest
|
Quote: Excuse me, I was in holidays. It has been fixed and I will upload it
this week.
In my opinion this is completely unacceptable. Reputable, professional
software companies do not grind to a halt when one member of the tech
support team goes on vacation.
Most reputable, professional software companies (Microsoft and
Oracle are ones I have personal experience with) are unlikely to
give you even a trivial fix for a bug you reported in even 3 months,
even if your employer is paying them thousands or tens of thousands
of dollars a year for a support contract. It takes them longer
than that just to fix a spelling error in a copyright notice and
re-release it. Jacob seems to be doing much better than that.
Quote: I recommend you to arrange your employees'
leave so that there is always tech support cover throughout the year.
It's not generally tech support that makes fixes to compilers. |
|
|
| Back to top |
|
|
|
| Richard Heathfield... |
Posted: Sat Aug 29, 2009 5:15 am |
|
|
|
Guest
|
tea strainer said:
Quote: jacob navia wrote:
Excuse me, I was in holidays. It has been fixed and I will upload
it this week.
In my opinion this is completely unacceptable. Reputable,
professional software companies do not grind to a halt when one
member of the tech support team goes on vacation.
Those who expect a perfect service have never tried to provide one.
--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh at (no spam)
"Usenet is a strange place" - dmr 29 July 1999
This line unintentionally left unblank |
|
|
| Back to top |
|
|
|
| James Kuyper... |
Posted: Sat Aug 29, 2009 3:50 pm |
|
|
|
Guest
|
tea strainer wrote:
Quote: jacob navia wrote:
Excuse me, I was in holidays. It has been fixed and I will upload it
this week.
In my opinion this is completely unacceptable. Reputable, professional
software companies do not grind to a halt when one member of the tech
support team goes on vacation. I recommend you to arrange your employees'
leave so that there is always tech support cover throughout the year.
So, are you saying that companies too small to have more than one member
in the tech support team are incapable of qualifying as "reputable,
professional companies"? Or are you saying that any company that small
which wishes to so qualify must prohibit the only member of their tech
support team from ever taking vacations?
It's a pretty ridiculous claim, in either case. Count yourself lucky
that he has made the fixed version of the code available to you within a
week of returning from vacation; there's very few big companies that
could respond that quickly. |
|
|
| Back to top |
|
|
|
|