Changeset 259897 in webkit for trunk/Source/JavaScriptCore/assembler/MacroAssembler.cpp
- Timestamp:
- Apr 10, 2020, 1:27:31 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/assembler/MacroAssembler.cpp
r258063 r259897 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.