http://llvm.org/bugs/show_bug.cgi?id=3397


Duncan Sands <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE




--- Comment #1 from Duncan Sands <[email protected]>  2009-01-25 03:43:19 ---
The i128 multiplication gets turned into a libcall
(a call into the gcc library).  This results in a
function call that returns i128.  That this does
not work on x86-32 is PR2660.  It most likely still
will not work once PR2660 is fixed, because the gcc
library for x86-32 does not currently support 128 bit
multiplications.  This is one of the limitations of
codegen of arbitrary precision integers: it relies
on external libraries which do not support arbitrarily
large sizes.

*** This bug has been marked as a duplicate of bug 2660 ***


-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to