Changeset 179912 in webkit for trunk/Source/JavaScriptCore/bytecode/CallLinkInfo.h
- Timestamp:
- Feb 10, 2015, 6:41:20 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bytecode/CallLinkInfo.h
r179478 r179912 56 56 return CallVarargs; 57 57 } 58 58 59 59 CallLinkInfo() 60 60 : isFTL(false) … … 72 72 } 73 73 74 static CodeSpecializationKind specializationKindFor(CallType callType) 75 { 76 return specializationFromIsConstruct(callType == Construct || callType == ConstructVarargs); 77 } 74 78 CodeSpecializationKind specializationKind() const 75 79 { 76 return specialization FromIsConstruct(callType == Construct || callType == ConstructVarargs);80 return specializationKindFor(static_cast<CallType>(callType)); 77 81 } 78 82
Note:
See TracChangeset
for help on using the changeset viewer.