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

[email protected] changed:

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

--- Comment #3 from [email protected] ---
Target lowering converts @llvm.powi.f64 builtin to a call to the function
__powidf2 which is defined in libgcc2 and compiler-rt. JIT on windows resolves
address of __powidf2 to 0x0 as it cannot find the symbol. callq 0 is trapping
here.

The culprit in this case is lack of linking of the compiler-rt library into
lli.exe. (tested on Win8 x86-64)

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

-- 
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