WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
140937
[ARM] Typo fix after
r176083
https://bugs.webkit.org/show_bug.cgi?id=140937
Summary
[ARM] Typo fix after r176083
Csaba Osztrogonác
Reported
2015-01-27 06:55:28 PST
[ARM] Typo fix after
r176083
Attachments
Patch
(1.39 KB, patch)
2015-01-27 06:55 PST
,
Csaba Osztrogonác
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Csaba Osztrogonác
Comment 1
2015-01-27 06:55:38 PST
Created
attachment 245442
[details]
Patch
Csaba Osztrogonác
Comment 2
2015-01-27 07:00:15 PST
Comment on
attachment 245442
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=245442&action=review
> Source/JavaScriptCore/assembler/ARMv7Assembler.h:1158 > - ASSERT(!(imm.isUInt12() & 1)); > + ASSERT(!(imm.getUInt12() & 1));
I ran into this assertion during debugging a bug on ARM Linux. It seems to be a simple typo. isUInt12() returns a logical value: 0 as false / not 0 as true, But we can't expect if the non 0 value is an odd number. I think the author wanted to expect odd number. In this case we should use getUint12() instead of isUInt12().
WebKit Commit Bot
Comment 3
2015-01-27 09:13:16 PST
Comment on
attachment 245442
[details]
Patch Clearing flags on attachment: 245442 Committed
r179187
: <
http://trac.webkit.org/changeset/179187
>
WebKit Commit Bot
Comment 4
2015-01-27 09:13:20 PST
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug