Changeset 246490 in webkit for trunk/Source/JavaScriptCore/b3/B3Opcode.h
- Timestamp:
- Jun 16, 2019, 6:48:13 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/b3/B3Opcode.h
r243330 r246490 466 466 } 467 467 468 inline bool isAtom ic(Opcode opcode)468 inline bool isAtom(Opcode opcode) 469 469 { 470 470 switch (opcode) { … … 511 511 inline bool isMemoryAccess(Opcode opcode) 512 512 { 513 return isAtom ic(opcode) || isLoadStore(opcode);513 return isAtom(opcode) || isLoadStore(opcode); 514 514 } 515 515
Note:
See TracChangeset
for help on using the changeset viewer.