Skip to content

Commit

Permalink
Deprecate isRefed in S390ConstantInstructionSnippet
Browse files Browse the repository at this point in the history
Signed-off-by: Filip Jeremic <fjeremic@ca.ibm.com>
  • Loading branch information
fjeremic committed Aug 21, 2018
1 parent b9dde6c commit 17bff41
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion compiler/z/codegen/ConstantDataSnippet.cpp
Expand Up @@ -318,7 +318,6 @@ TR::S390ConstantInstructionSnippet::S390ConstantInstructionSnippet(TR::CodeGener
{
_instruction = instr;
setLength(instr->getOpCode().getInstructionLength());
setIsRefed(true);
}

uint8_t *
Expand Down
3 changes: 0 additions & 3 deletions compiler/z/codegen/ConstantDataSnippet.hpp
Expand Up @@ -102,7 +102,6 @@ class S390ConstantDataSnippet : public TR::Snippet
class S390ConstantInstructionSnippet : public TR::S390ConstantDataSnippet
{
TR::Instruction * _instruction;
bool _isRefed;

public:

Expand All @@ -113,8 +112,6 @@ class S390ConstantInstructionSnippet : public TR::S390ConstantDataSnippet
uint32_t getConstantSize() { return 8; }
virtual int64_t getDataAs8Bytes();
uint8_t * emitSnippetBody();
bool isRefed() { return _isRefed; }
void setIsRefed(bool v) { _isRefed = v; }
};

/**
Expand Down

0 comments on commit 17bff41

Please sign in to comment.