Changeset 207289 in webkit


Ignore:
Timestamp:
Oct 13, 2016 8:36:00 AM (8 years ago)
Author:
pvollan@apple.com
Message:

[Win64] Compile fix.
https://bugs.webkit.org/show_bug.cgi?id=163384

Reviewed by Brent Fulgham.

Fix use of potentially uninitialized variable.

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r207279 r207289  
     12016-10-13  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win64] Compile fix.
     4        https://bugs.webkit.org/show_bug.cgi?id=163384
     5
     6        Reviewed by Brent Fulgham.
     7
     8        Fix use of potentially uninitialized variable.
     9
     10        * dfg/DFGSpeculativeJIT64.cpp:
     11        (JSC::DFG::SpeculativeJIT::compile):
     12
    1132016-10-12  Chris Dumez  <cdumez@apple.com>
    214
  • trunk/Source/JavaScriptCore/dfg/DFGSpeculativeJIT64.cpp

    r206853 r207289  
    46394639            Optional<GPRTemporary> temp;
    46404640
    4641             GPRReg tempGPR;
     4641            GPRReg tempGPR = InvalidGPRReg;
    46424642            if (node->child1().useKind() == CellUse) {
    46434643                temp = GPRTemporary(this);
Note: See TracChangeset for help on using the changeset viewer.