diff options
author | Lars Knoll <[email protected]> | 2014-02-11 09:46:45 +0100 |
---|---|---|
committer | The Qt Project <[email protected]> | 2014-02-22 18:47:35 +0100 |
commit | 7dbb49bdec6e74f9d1eb096d15bdeea0881c3704 (patch) | |
tree | 1838e6d68d34823c0626f583a3b43dddb32b24c4 /src/qml/jit/jit.pri | |
parent | c60387d210b03ba4fa42522dec3184e254eb7006 (diff) |
Move binops out of the isel
Move the binop handling into qv4binop* to clean up the
code and ease maintenance.
Change-Id: I0053380be7f326a2100302a63e921698a5b28c2a
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/jit/jit.pri')
-rw-r--r-- | src/qml/jit/jit.pri | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qml/jit/jit.pri b/src/qml/jit/jit.pri index 581eadc43a..151ff32df9 100644 --- a/src/qml/jit/jit.pri +++ b/src/qml/jit/jit.pri @@ -7,12 +7,14 @@ HEADERS += \ $$PWD/qv4assembler_p.h \ $$PWD/qv4regalloc_p.h \ $$PWD/qv4isel_masm_p.h \ + $$PWD/qv4binop_p.h \ $$PWD/qv4unop_p.h \ SOURCES += \ $$PWD/qv4assembler.cpp \ $$PWD/qv4regalloc.cpp \ $$PWD/qv4isel_masm.cpp \ + $$PWD/qv4binop.cpp \ $$PWD/qv4unop.cpp \ include(../../3rdparty/masm/masm.pri) |