Skip to content

Fix operands #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 5, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext/opcache/jit/zend_jit_x86.dasc
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ static int zend_jit_new(dasm_State **Dst, zend_op *opline)
|.macro fp_op, fp_ins, op_type, op
|| if (op_type == IS_CONST) {
| .if X64
| mov aword EX->literals, r0
| mov r0, aword EX->literals
| fp_ins qword [r0 + op.constant]
| .else
| fp_ins qword [op.zv]
Expand Down Expand Up @@ -345,7 +345,7 @@ static int zend_jit_new(dasm_State **Dst, zend_op *opline)
|.macro sse_op, sse_ins, op_type, op, reg
|| if (op_type == IS_CONST) {
| .if X64
| mov aword EX->literals, r0
| mov r0, aword EX->literals
| sse_ins reg, qword [r0 + op.constant]
| .else
| sse_ins reg, qword [op.zv]
Expand Down