-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is LLVM's Intrinsic llvm.sin.f64 unsupported? #4338
Comments
@llvm.sin.f64
unsupported?
@llvm.sin.f64
unsupported?
This does look like a bug. We should implement it the same way as |
I tried only modifying |
I submitted the fix as promised above. I ran the complete test suite and everything passed. |
This issue has been automatically marked as stale because there has been no activity in the past 2 years. It will be closed automatically if no further activity occurs in the next 7 days. Feel free to re-open at any time if this issue is still relevant. |
Hello Emscripten devs!
I'm trying to compile an LLVM IR file to JS using emscripten. Some functions in that file use the Sin function and it's declared as follows:
When I compile my LLVM IR file,
emcc
complains about a missing sin function:I noticed that the dots are replaced with underscores in the function name, but my files doesn't contain any references to that function; only to the standard LLVM one with dots.
Since
emcc
can't find this function it has an incomplete implementation in the generated JS:I'm running the 64 bit version of emscripten from the
incoming
branch.Is the
@llvm.sin.f64
intrinsic unsupported? Or is this a bug?The text was updated successfully, but these errors were encountered: