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