Changeset 155480 in webkit for trunk/Source/JavaScriptCore/dfg/DFGUseKind.h
- Timestamp:
- Sep 10, 2013, 2:55:45 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGUseKind.h
r155201 r155480 63 63 switch (useKind) { 64 64 case UntypedUse: 65 return Spec EmptyOrTop; // TOP isn't good enough; untyped uses may use the normally unseen empty value, in the case of lazy registers.65 return SpecFullTop; 66 66 case Int32Use: 67 67 case KnownInt32Use: … … 98 98 default: 99 99 RELEASE_ASSERT_NOT_REACHED(); 100 return Spec Top;100 return SpecFullTop; 101 101 } 102 102 }
Note:
See TracChangeset
for help on using the changeset viewer.