[Issue 14767] Support CTFE of BigInt

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Wed Jul 8 06:48:44 PDT 2015


https://issues.dlang.org/show_bug.cgi?id=14767

Ivan Kazmenko <gassa at mail.ru> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gassa at mail.ru

--- Comment #4 from Ivan Kazmenko <gassa at mail.ru> ---
Perhaps on x86, the compiler could do something like the following when
instantiating BigInt:

-----
if (__ctfe)
{
   // use biguintnoasm
}
else
{
   // use biguintx86
}
-----

--


More information about the Digitalmars-d-bugs mailing list