Changeset 239427 in webkit for trunk/Source/JavaScriptCore/b3/B3Value.cpp
- Timestamp:
- Dec 19, 2018, 8:41:11 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/b3/B3Value.cpp
r231204 r239427 460 460 if (!numChildren()) 461 461 return nullptr; 462 if ( std::optional<Opcode> invertedOpcode = B3::invertedCompare(opcode(), child(0)->type())) {462 if (Optional<Opcode> invertedOpcode = B3::invertedCompare(opcode(), child(0)->type())) { 463 463 ASSERT(!kind().hasExtraBits()); 464 464 return proc.add<Value>(*invertedOpcode, type(), origin(), children());
Note:
See TracChangeset
for help on using the changeset viewer.