[LLVMbugs] [Bug 8379] Use of llvm.powi.f64 on Windows crashes
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Wed Feb 26 13:39:33 PST 2014
http://llvm.org/bugs/show_bug.cgi?id=8379
keremkat+llvm at gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |keremkat+llvm at gmail.com
Resolution|--- |DUPLICATE
--- Comment #3 from keremkat+llvm at gmail.com ---
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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20140226/6646e668/attachment.html>
More information about the llvm-bugs
mailing list