Skip to content
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

Fix union ABI incompatibility of spidermonkey on ARM arch. #467

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Fix codejen as JSVal changed 64 -> {64}

  • Loading branch information
ILyoan committed May 22, 2013
commit c6b3c2d927f6c9bddc1db2678502b1fdb63d26b3
@@ -1454,7 +1454,7 @@ def wrapAndSetPtr(wrapCall, failureCode=None):
"""
if failureCode is None:
if not haveSuccessCode:
return wrapCall + ";\n" + "return if *vp != 0 { 1 } else { 0 };"
return wrapCall + ";\n" + "return if (*vp).v != 0 { 1 } else { 0 };"
failureCode = "return 0;"
str = ("if !%s {\n" +
CGIndenter(CGGeneric(failureCode)).define() + "\n" +
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.