We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da18809 commit fa29174Copy full SHA for fa29174
ext/opcache/jit/zend_jit_internal.h
@@ -498,8 +498,10 @@ typedef struct _zend_jit_op_array_trace_extension {
498
zend_op_trace_info trace_info[1];
499
} zend_jit_op_array_trace_extension;
500
501
-#define ZEND_OP_TRACE_INFO(opline, offset) \
502
- ((zend_op_trace_info*)(((char*)opline) + offset))
+static zend_always_inline zend_op_trace_info *ZEND_OP_TRACE_INFO(const zend_op *opline, size_t offset)
+{
503
+ return (zend_op_trace_info*)((char*)opline + offset);
504
+}
505
506
/* Recorder */
507
typedef enum _zend_jit_trace_op {
0 commit comments