Changeset 41252 in webkit


Ignore:
Timestamp:
Feb 26, 2009 9:08:43 AM (15 years ago)
Author:
zecke@webkit.org
Message:

2009-02-26 Carol Szabo <carol.szabo@nokia.com>

Reviewed by Darin Adler.

https://bugs.webkit.org/show_bug.cgi?id=24099
ARM Compiler Warnings in pcre_exec.cpp

  • pcre/pcre_exec.cpp: (match):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r41243 r41252  
     12009-02-26  Carol Szabo  <carol.szabo@nokia.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=24099
     6        ARM Compiler Warnings in pcre_exec.cpp
     7
     8        * pcre/pcre_exec.cpp:
     9        (match):
     10
    1112009-02-25  Cameron Zwarich  <cwzwarich@uwaterloo.ca>
    212
  • trunk/JavaScriptCore/pcre/pcre_exec.cpp

    r40404 r41252  
    448448    bool minimize = false; /* Initialization not really needed, but some compilers think so. */
    449449    unsigned remainingMatchCount = matchLimit;
     450    int othercase; /* Declare here to avoid errors during jumps */
    450451   
    451452    MatchStack stack;
     
    11871188               
    11881189                if (stack.currentFrame->locals.fc <= 0xFFFF) {
    1189                     int othercase = md.ignoreCase ? jsc_pcre_ucp_othercase(stack.currentFrame->locals.fc) : -1;
     1190                    othercase = md.ignoreCase ? jsc_pcre_ucp_othercase(stack.currentFrame->locals.fc) : -1;
    11901191                   
    11911192                    for (int i = 1; i <= min; i++) {
Note: See TracChangeset for help on using the changeset viewer.