Re: Adding C_ULONGLONG
- Posted by ghaberek (admin) Feb 14, 2015
- 1506 views
rkdavis said...
just a quick query.
is line 1518 of be_callc.c correct? I think it might supposed to be
if( uint64_t_result <= (unsigned long long int)MAXINT && uint64_t_result >= (unsigned long long int)0 ){
instead of
if( uint64_t_result <= (unsigned long long int)MAXINT && int64_t_result >= (unsigned long long int)0 ){
Good catch. What's interesting is that int64_t_result isn't even be defined within that if block, so the compiler should have caught that and failed to the build. ("A good workman never blames his tools.") I will get it fixed right quick.
-Greg