remove PushGroup::fromTokens

This commit is contained in:
DataHoarder 2021-08-03 17:53:02 +02:00
parent ee8c4ed7de
commit 1cce604661
2 changed files with 0 additions and 8 deletions

View file

@ -234,11 +234,6 @@ namespace Instruction {
return v;
}
std::unique_ptr<Instruction> PushGroup::fromTokens(const Instruction::Instruction::parseOperatorResult &op,
const std::vector<Token> &tokens) {
return nullptr;
}
PopPeek::PopPeek(const AddressWithOffset &address, uint32_t offset, uint8_t count) {
if (count > 4) {

View file

@ -196,9 +196,6 @@ namespace Instruction {
}
return s;
}
static std::unique_ptr<Instruction>
fromTokens(const Instruction::parseOperatorResult &op, const std::vector<Token> &tokens);
};
class PopPeek : public Instruction {