Changeset 179503 in webkit for trunk/Source/JavaScriptCore/dfg/DFGArgumentPosition.h
- Timestamp:
- Feb 2, 2015, 3:32:00 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/dfg/DFGArgumentPosition.h
r174371 r179503 1 1 /* 2 * Copyright (C) 2012, 2013 Apple Inc. All rights reserved.2 * Copyright (C) 2012, 2013, 2015 Apple Inc. All rights reserved. 3 3 * 4 4 * Redistribution and use in source and binary forms, with or without … … 124 124 out.print(" "); 125 125 126 if (operand.isArgument()) 127 out.print("arg", operand.toArgument(), "(", VariableAccessDataDump(*graph, variable), ")"); 128 else 129 out.print("r", operand.toLocal(), "(", VariableAccessDataDump(*graph, variable), ")"); 126 out.print(operand, "(", VariableAccessDataDump(*graph, variable), ")"); 130 127 } 131 128 out.print("\n");
Note:
See TracChangeset
for help on using the changeset viewer.