Changeset 69372 in webkit


Ignore:
Timestamp:
Oct 7, 2010 8:16:48 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-07 David Goodwin <david_goodwin@apple.com>

Reviewed by Oliver Hunt.

ARM JIT generates undefined operations due to partially uninitialized ShiftTypeAndAmount
https://bugs.webkit.org/show_bug.cgi?id=47356

  • assembler/ARMv7Assembler.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r69277 r69372  
     12010-10-07  David Goodwin  <david_goodwin@apple.com>
     2
     3        Reviewed by Oliver Hunt.
     4
     5        ARM JIT generates undefined operations due to partially uninitialized ShiftTypeAndAmount
     6        https://bugs.webkit.org/show_bug.cgi?id=47356
     7
     8        * assembler/ARMv7Assembler.h:
     9
    1102010-10-06  Chris Evans  <cevans@google.com>
    211
  • trunk/JavaScriptCore/assembler/ARMv7Assembler.h

    r69080 r69372  
    441441        struct {
    442442            unsigned type   : 2;
    443             unsigned amount : 5;
     443            unsigned amount : 6;
    444444        };
    445445    } m_u;
Note: See TracChangeset for help on using the changeset viewer.