diff options
author | Lars Knoll <[email protected]> | 2018-07-01 11:33:04 +0200 |
---|---|---|
committer | Lars Knoll <[email protected]> | 2018-07-03 08:09:13 +0000 |
commit | 6e79a00cad2f5dd09bdf40e594a65af58b370d9d (patch) | |
tree | dc00a93fae797b24a53c0f858ae70904dc6f169c /src/qml/compiler/qv4bytecodehandler.cpp | |
parent | dcbdb306f4442199384a71d532a3610a84d13fd5 (diff) |
Get rid of the duplication for the GetLookup instructions
GetLookup and GetLookupA were doing exactly the same thing. Only keep
the version that expects the base object in the accumulator and
rename it to GetLookup.
Change-Id: Ia14256880cef23f7b70d8c7e6bb74aba371b8d9a
Reviewed-by: Simon Hausmann <[email protected]>
Diffstat (limited to 'src/qml/compiler/qv4bytecodehandler.cpp')
-rw-r--r-- | src/qml/compiler/qv4bytecodehandler.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/qml/compiler/qv4bytecodehandler.cpp b/src/qml/compiler/qv4bytecodehandler.cpp index b96c04dc01..45968570d0 100644 --- a/src/qml/compiler/qv4bytecodehandler.cpp +++ b/src/qml/compiler/qv4bytecodehandler.cpp @@ -206,9 +206,6 @@ std::vector<int> ByteCodeHandler::collectLabelsInBytecode(const char *code, uint COLLECTOR_BEGIN_INSTR(GetLookup) COLLECTOR_END_INSTR(GetLookup) - COLLECTOR_BEGIN_INSTR(GetLookupA) - COLLECTOR_END_INSTR(GetLookupA) - COLLECTOR_BEGIN_INSTR(StoreProperty) COLLECTOR_END_INSTR(StoreProperty) |