[Webkit-unassigned] [Bug 137844] [EFL] build break occurs on webkit efl build.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Sat Oct 18 01:59:34 PDT 2014
https://bugs.webkit.org/show_bug.cgi?id=137844
--- Comment #3 from KwangHyuk <hyuki.kim at samsung.com> ---
(In reply to comment #2)
> Comment on attachment 240056 [details]
> Patch
>
> I believe this was fixed already?
(In reply to comment #2)
> Comment on attachment 240056 [details]
> Patch
>
> I believe this was fixed already?
Unfortunately, Nobody touch it yet.
unused-but-set-variable. :)
Could you see the code below ?
unsigned elementAddressRegisterIndex = std::numeric_limits<unsigned>::max();
unsigned elementToTestIndex = std::numeric_limits<unsigned>::max();
bool isElementToMatchOnStack = false;
if (selectorList.clobberElementAddressRegister) {
if (elementToMatch != elementAddressRegister) {
registersToSave.append(elementAddressRegister);
registersToSave.append(elementToMatch);
elementAddressRegisterIndex = 0;
elementToTestIndex = 1;
isElementToMatchOnStack = true;
} else {
registersToSave.append(elementAddressRegister);
elementAddressRegisterIndex = 0;
elementToTestIndex = 0;
}
} else if (elementToMatch != elementAddressRegister) {
registersToSave.append(elementAddressRegister);
elementAddressRegisterIndex = 0;
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20141018/789e3488/attachment-0002.html>
More information about the webkit-unassigned
mailing list