Temporarily disable uint32 mode for comparisons
BUG=v8:3380 LOG=n R=mstarzinger@chromium.org Review URL: https://codereview.chromium.org/323103002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@21750 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
parent
2709e30562
commit
6ca6333637
@ -62,6 +62,7 @@ bool HUint32AnalysisPhase::IsSafeUint32Use(HValue* val, HValue* use) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (use->IsCompareNumericAndBranch()) {
|
} else if (use->IsCompareNumericAndBranch()) {
|
||||||
|
return false; // TODO(svenpanne/3380): Fix and re-enable!
|
||||||
HCompareNumericAndBranch* c = HCompareNumericAndBranch::cast(use);
|
HCompareNumericAndBranch* c = HCompareNumericAndBranch::cast(use);
|
||||||
return IsUint32Operation(c->left()) && IsUint32Operation(c->right());
|
return IsUint32Operation(c->left()) && IsUint32Operation(c->right());
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user