Changeset 231665 in webkit for trunk/Source/JavaScriptCore/dfg/DFGBlockSet.h
- Timestamp:
- May 10, 2018, 3:23:12 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGBlockSet.h
r206525 r231665 1 1 /* 2 * Copyright (C) 2014 Apple Inc. All rights reserved.2 * Copyright (C) 2014-2018 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 43 43 { 44 44 return !m_set.set(block->index); 45 } 46 47 // Return true if the block was removed, false if it was already absent. 48 bool remove(BasicBlock* block) 49 { 50 return m_set.clear(block->index); 45 51 } 46 52
Note:
See TracChangeset
for help on using the changeset viewer.