Bug 67965 - Broken Build for ARM - lshift32() needs TrustedImm32 arg
Summary: Broken Build for ARM - lshift32() needs TrustedImm32 arg
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 528+ (Nightly build)
Hardware: Other Unspecified
: P2 Normal
Assignee: Michael Saboff
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-09-12 16:03 PDT by Michael Saboff
Modified: 2011-09-12 16:13 PDT (History)
0 users

See Also:


Attachments
Proposed patch (1.33 KB, patch)
2011-09-12 16:08 PDT, Michael Saboff
andersca: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Saboff 2011-09-12 16:03:06 PDT
The code lshift32(16, ARMRegisters::S1); should be lshift32(TrustedImm32(16), ARMRegisters::S1);
Comment 1 Michael Saboff 2011-09-12 16:08:47 PDT
Created attachment 107101 [details]
Proposed patch
Comment 2 Michael Saboff 2011-09-12 16:13:37 PDT
Committed r94987: <http://trac.webkit.org/changeset/94987>