Commit 5bc5ba1e authored by paul.lind's avatar paul.lind Committed by Commit bot

[turbofan] Fix a -Wsign-compare error under GCC 4.9.2.

Review URL: https://codereview.chromium.org/1230063011

Cr-Commit-Position: refs/heads/master@{#29632}
parent f9d435d2
......@@ -235,7 +235,7 @@ class LinkageHelper {
static CallDescriptor* GetInterpreterDispatchDescriptor(
Zone* zone, const MachineSignature* msig) {
DCHECK_EQ(0, msig->parameter_count());
DCHECK_EQ(0U, msig->parameter_count());
LocationSignature::Builder locations(zone, msig->return_count(),
msig->parameter_count());
AddReturnLocations(&locations);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment