aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4regalloc.cpp
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@me.com>2013-09-09 14:00:06 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-09-20 12:42:25 +0200
commitd33fe17cd1fddd8dee0a26dc46f5062c34f11216 (patch)
treec07d1f356a717cd6e0e7fba630751a6102eda8ce /src/qml/compiler/qv4regalloc.cpp
parent3ef88c539ff63d9cb33af71f44653b328f36d0db (diff)
V4 IR: rename ObjectType to VarType
The ObjectType was a misnomer: it was used to indicate that the expression could have multiple types, or that the type could not be inferred statically. Change-Id: Ic48a0cd1dd7ae7bfafd361e0c9792ab161417039 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'src/qml/compiler/qv4regalloc.cpp')
-rw-r--r--src/qml/compiler/qv4regalloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4regalloc.cpp b/src/qml/compiler/qv4regalloc.cpp
index a6364a25d4..8a879aa40c 100644
--- a/src/qml/compiler/qv4regalloc.cpp
+++ b/src/qml/compiler/qv4regalloc.cpp
@@ -542,7 +542,7 @@ private:
Q_ASSERT(!_defs.contains(*t));
bool canHaveReg = true;
switch (t->type) {
- case ObjectType:
+ case VarType:
case StringType:
case UndefinedType:
case NullType: