Changeset 172961 in webkit for trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp
- Timestamp:
- Aug 26, 2014, 9:46:10 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGFixupPhase.cpp
r172940 r172961 737 737 fixEdge<StringUse>(node->child1()); 738 738 break; 739 case SwitchCell:740 if (node->child1()->shouldSpeculateCell())741 fixEdge<CellUse>(node->child1());742 // else it's fine for this to have UntypedUse; we will handle this by just making743 // non-cells take the default case.744 break;745 739 } 746 740 break; … … 904 898 } 905 899 906 case GetExecutable: {900 case CheckExecutable: { 907 901 fixEdge<FunctionUse>(node->child1()); 908 902 break; … … 910 904 911 905 case CheckStructure: 912 case Check Cell:906 case CheckFunction: 913 907 case CheckHasInstance: 914 908 case CreateThis: … … 1127 1121 case Call: 1128 1122 case Construct: 1129 case ProfiledCall:1130 case ProfiledConstruct:1131 1123 case NativeCall: 1132 1124 case NativeConstruct: … … 1158 1150 case CountExecution: 1159 1151 case ForceOSRExit: 1160 case CheckBadCell:1161 1152 case CheckWatchdogTimer: 1162 1153 case Unreachable: … … 1169 1160 case MovHint: 1170 1161 case ZombieHint: 1171 case BottomValue:1172 1162 break; 1173 1163 #else
Note:
See TracChangeset
for help on using the changeset viewer.