Alex Villacís Lasso a_villacis@palosanto.com writes:
- /* this one shows that native oleaut32 is willing to lose significant digits in order to avert an overflow */
- SETDEC(l,2,0,0,0xFFFFFFFFFFFFFFFFULL); SETDEC(r,0,0,0,40000000001ULL); MATH2(VarDecMul);EXPECTDEC(1,0,0xee6b2800,0x19999998ab2e719aULL);
You should not use long long constants, that's not portable. Use SETDEC64 and EXPECTDEC64 instead.