aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/qml/v4/moth/qv4instr_moth_p.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/qml/v4/moth/qv4instr_moth_p.h')
-rw-r--r--src/qml/qml/v4/moth/qv4instr_moth_p.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qml/qml/v4/moth/qv4instr_moth_p.h b/src/qml/qml/v4/moth/qv4instr_moth_p.h
index 1ace0172f1..7397a1811d 100644
--- a/src/qml/qml/v4/moth/qv4instr_moth_p.h
+++ b/src/qml/qml/v4/moth/qv4instr_moth_p.h
@@ -112,9 +112,11 @@ QT_BEGIN_NAMESPACE
#define MOTH_INSTR_ALIGN_MASK (Q_ALIGNOF(QQmlJS::Moth::Instr) - 1)
#ifdef MOTH_THREADED_INTERPRETER
-# define MOTH_INSTR_HEADER void *code;
+# define MOTH_INSTR_HEADER void *code; \
+ unsigned int breakPoint : 1;
#else
-# define MOTH_INSTR_HEADER quint8 instructionType;
+# define MOTH_INSTR_HEADER quint8 instructionType; \
+ unsigned int breakPoint : 1;
#endif
#define MOTH_INSTR_ENUM(I, FMT) I,