~ubuntu-branches/ubuntu/vivid/qtdeclarative-opensource-src-gles/vivid

« back to all changes in this revision

Viewing changes to .pc/QML-Compilation-unit-caching-and-JIT-changes.patch/src/qml/compiler/qv4isel_p.cpp

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2015-03-11 16:51:45 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20150311165145-7653iqap3mau92gy
Tags: 5.4.1-0ubuntu1
Sync package with qtdeclarative-opensource-src - 5.4.1-1ubuntu3

Show diffs side-by-side

added added

removed removed

Lines of Context:
182
182
            } else if (Subscript *ss = c->base->asSubscript()) {
183
183
                callSubscript(ss->base, ss->index, c->args, s->target);
184
184
                return;
185
 
            } else if (c->base->asTemp() || c->base->asArgLocal()) {
 
185
            } else if (c->base->asTemp() || c->base->asArgLocal() || c->base->asConst()) {
186
186
                callValue(c->base, c->args, s->target);
187
187
                return;
188
188
            }