[AArch64] Add a few more VFP register helpers.

Renames Is128Bit to IsQuad to line up more with the other helpers.
This commit is contained in:
Ryan Houdek
2015-01-07 13:05:55 -06:00
parent 2b4f1aed40
commit 5a0133c478
2 changed files with 4 additions and 2 deletions

View File

@ -377,7 +377,7 @@ void ARM64XEmitter::EncodeLoadStoreExcInst(u32 instenc,
void ARM64XEmitter::EncodeLoadStorePairedInst(u32 op, ARM64Reg Rt, ARM64Reg Rt2, ARM64Reg Rn, u32 imm)
{
bool b64Bit = Is64Bit(Rt);
bool b128Bit = Is128Bit(Rt);
bool b128Bit = IsQuad(Rt);
bool bVec = IsVector(Rt);
if (b128Bit)