aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/jsruntime/qv4lookup_p.h
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2017-05-15 12:42:56 +0200
committerLars Knoll <lars.knoll@qt.io>2017-05-19 06:23:32 +0000
commit10b237882cfe76521b4dc65300a2a0473faca174 (patch)
tree600a41730d6c123770ad2548f388f29ec73b2523 /src/qml/jsruntime/qv4lookup_p.h
parentafbb57ae84ecbee5fab9eb6e58356b19d7995ea5 (diff)
Optimize lookups based on IC changes
Change-Id: I1f4f4aaad0c8194bce2ebde4503df38cab0990a2 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/qml/jsruntime/qv4lookup_p.h')
-rw-r--r--src/qml/jsruntime/qv4lookup_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qml/jsruntime/qv4lookup_p.h b/src/qml/jsruntime/qv4lookup_p.h
index 9e50235b73..151231991f 100644
--- a/src/qml/jsruntime/qv4lookup_p.h
+++ b/src/qml/jsruntime/qv4lookup_p.h
@@ -79,13 +79,14 @@ struct Lookup {
struct {
void *dummy0;
void *dummy1;
+ void *dummy2;
Heap::Object *proto;
- unsigned type;
};
};
union {
int level;
uint index2;
+ unsigned type;
};
uint index;
uint nameIndex;