mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 13:21:05 +00:00
Bug 1841199 - Work around tail-call optimization not happening on mips* and ppc64. r=gfx-reviewers,lsalzman
Differential Revision: https://phabricator.services.mozilla.com/D182686
This commit is contained in:
parent
24ef014417
commit
5eff8de550
@ -614,3 +614,7 @@ if CONFIG['CPU_ARCH'] in ('mips32', 'mips64'):
|
||||
# The skia code uses `mips` as a variable, but it's a builtin preprocessor
|
||||
# macro on mips that expands to `1`.
|
||||
DEFINES['mips'] = False
|
||||
|
||||
# Work around bug 1841199.
|
||||
if CONFIG['CPU_ARCH'] in ('mips32', 'mips64', 'ppc64'):
|
||||
DEFINES['musttail'] = 'nomusttail'
|
||||
|
Loading…
Reference in New Issue
Block a user