Add in a stub merging function
--HG-- extra : convert_revision : 15e3cdb4ebcd31bc44204687ba59dde00c56c6be
This commit is contained in:
parent
47c24ff07a
commit
e633e23a3a
1 changed files with 7 additions and 0 deletions
|
@ -79,6 +79,13 @@ output header {{
|
||||||
void printReg(std::ostream &os, int reg) const;
|
void printReg(std::ostream &os, int reg) const;
|
||||||
void printSrcReg(std::ostream &os, int reg) const;
|
void printSrcReg(std::ostream &os, int reg) const;
|
||||||
void printDestReg(std::ostream &os, int reg) const;
|
void printDestReg(std::ostream &os, int reg) const;
|
||||||
|
|
||||||
|
inline uint64_t merge(uint64_t into, uint64_t val, int size) const
|
||||||
|
{
|
||||||
|
//FIXME This needs to be significantly more sophisticated
|
||||||
|
return val;
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue