Changeset 167612 in webkit for trunk/Source/JavaScriptCore/dfg/DFGMinifiedNode.h
- Timestamp:
- Apr 21, 2014, 12:51:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGMinifiedNode.h
r164424 r167612 41 41 switch (type) { 42 42 case JSConstant: 43 case Int52Constant: 44 case DoubleConstant: 43 45 case WeakJSConstant: 44 46 case PhantomArguments: … … 85 87 static bool hasConstantNumber(NodeType type) 86 88 { 87 return type == JSConstant ;89 return type == JSConstant || type == Int52Constant || type == DoubleConstant; 88 90 } 89 91 static bool hasWeakConstant(NodeType type)
Note:
See TracChangeset
for help on using the changeset viewer.