Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oliver Horn
asm
Commits
4b012177
Commit
4b012177
authored
Jan 10, 2018
by
Eric Bruneton
Browse files
Fix the regression and make the previously added test pass.
parent
83b40609
Changes
1
Hide whitespace changes
Inline
Side-by-side
asm/src/main/java/org/objectweb/asm/Frame.java
View file @
4b012177
...
...
@@ -648,7 +648,8 @@ class Frame {
if
(
abstractType
==
UNINITIALIZED_THIS
)
{
return
REFERENCE_KIND
|
symbolTable
.
addType
(
symbolTable
.
getClassName
());
}
else
{
return
REFERENCE_KIND
|
symbolTable
.
addType
(
symbolTable
.
getType
(
value
).
value
);
return
REFERENCE_KIND
|
symbolTable
.
addType
(
symbolTable
.
getType
(
abstractType
&
VALUE_MASK
).
value
);
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment