Changeset 260222 in webkit for trunk/Source/JavaScriptCore/assembler/MacroAssembler.cpp
- Timestamp:
- Apr 16, 2020, 2:40:23 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/MacroAssembler.cpp
r259897 r260222 29 29 #if ENABLE(ASSEMBLER) 30 30 31 #include "JSCPtrTag.h"32 31 #include "Options.h" 33 32 #include "ProbeContext.h" … … 57 56 void MacroAssembler::probe(Function<void(Probe::Context&)> func) 58 57 { 59 probe( tagCFunction<JITProbePtrTag>(stdFunctionCallback), new Function<void(Probe::Context&)>(WTFMove(func)));58 probe(stdFunctionCallback, new Function<void(Probe::Context&)>(WTFMove(func))); 60 59 } 61 62 60 #endif // ENABLE(MASM_PROBE) 63 61
Note:
See TracChangeset
for help on using the changeset viewer.