Changeset 38369 in webkit for trunk/JavaScriptCore/VM/CodeBlock.h
- Timestamp:
- Nov 13, 2008, 4:53:35 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/VM/CodeBlock.h
r38368 r38369 256 256 } 257 257 258 inline bool isKnownNotImmediate(int index) 259 { 260 if (index == thisRegister) 261 return true; 262 263 if (isConstantRegisterIndex(index)) 264 return !JSImmediate::isImmediate(getConstant(index)); 265 266 return false; 267 } 268 258 269 ALWAYS_INLINE bool isConstantRegisterIndex(int index) 259 270 {
Note:
See TracChangeset
for help on using the changeset viewer.