Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Bug 602393: Fix idiotic mistake causing JITs to be blacklisted on all…
Browse files Browse the repository at this point in the history
… android devices. r=dvander a=blocking-fennec-b1+

--HG--
branch : GECKO20b7pre_20100929_RELBRANCH
extra : transplant_source : %7BP1%D1%9C%7D%3E%8B%29%0D%8BS%3A%83%D3%E2%C1%BB%07%96
  • Loading branch information
joneschrisg committed Oct 7, 2010
1 parent afa12fe commit 1817ae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/jscntxt.cpp
Expand Up @@ -2228,8 +2228,8 @@ ComputeIsJITBroken()
"SPH-D700", // Samsung i9000, Epic device "SPH-D700", // Samsung i9000, Epic device
NULL NULL
}; };
for (const char* hw = blacklist[0]; hw; ++hw) { for (const char** hw = &blacklist[0]; *hw; ++hw) {
if (line.npos != line.find(hw)) { if (line.npos != line.find(*hw)) {
broken = true; broken = true;
break; break;
} }
Expand Down

0 comments on commit 1817ae8

Please sign in to comment.