Changeset 164459 in webkit for trunk/Source/JavaScriptCore/dfg/DFGBasicBlock.cpp
- Timestamp:
- Feb 20, 2014, 5:20:48 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGBasicBlock.cpp
r164229 r164459 1 1 /* 2 * Copyright (C) 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2013, 2014 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 33 33 namespace JSC { namespace DFG { 34 34 35 BasicBlock::BasicBlock(unsigned bytecodeBegin, unsigned numArguments, unsigned numLocals) 35 BasicBlock::BasicBlock( 36 unsigned bytecodeBegin, unsigned numArguments, unsigned numLocals, float executionCount) 36 37 : bytecodeBegin(bytecodeBegin) 37 38 , index(NoBlock) … … 50 51 , valuesAtHead(numArguments, numLocals) 51 52 , valuesAtTail(numArguments, numLocals) 53 , executionCount(executionCount) 52 54 { 53 55 }
Note:
See TracChangeset
for help on using the changeset viewer.