RegAlloc: Allow allocation of XMM registers

This commit is contained in:
MerryMage 2016-08-02 13:46:12 +01:00
parent 864081d1a0
commit 4414ec5bc8
5 changed files with 218 additions and 131 deletions

View file

@ -41,6 +41,8 @@ enum class Type {
U16 = 1 << 5,
U32 = 1 << 6,
U64 = 1 << 7,
F32 = 1 << 8,
F64 = 1 << 9,
};
Type GetTypeOf(Opcode op);