Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,12 @@ class TranslatedParameterReadEffect extends TranslatedReadEffect, TTranslatedPar
}

final override IRVariable getInstructionVariable(InstructionTag tag) {
tag = OnlyInstructionTag() and
(
tag = OnlyInstructionTag() or
tag = InitializerStoreTag() or
tag = InitializerVariableAddressTag() or
tag = InitializerIndirectStoreTag()
) and
Comment on lines +860 to +865
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies for not being clear enough. This is a problem on the extractor side. This should not be fixed here.

result = getIRUserVariable(this.getFunction(), param)
}
}