From bb377d0fc3ca04d3febdb8c280e3a46b21a5893a Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 9 Oct 2014 20:14:39 -0400 Subject: [PATCH] PPCAnalyst: Remove unnecessary casts --- Source/Core/Core/PowerPC/PPCAnalyst.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/PowerPC/PPCAnalyst.h b/Source/Core/Core/PowerPC/PPCAnalyst.h index a591c7f489..110f663ad7 100644 --- a/Source/Core/Core/PowerPC/PPCAnalyst.h +++ b/Source/Core/Core/PowerPC/PPCAnalyst.h @@ -84,16 +84,16 @@ struct BlockRegStats inline void SetInputRegister(int reg, short opindex) { if (firstRead[reg] == -1) - firstRead[reg] = (short)(opindex); - lastRead[reg] = (short)(opindex); + firstRead[reg] = opindex; + lastRead[reg] = opindex; numReads[reg]++; } inline void SetOutputRegister(int reg, short opindex) { if (firstWrite[reg] == -1) - firstWrite[reg] = (short)(opindex); - lastWrite[reg] = (short)(opindex); + firstWrite[reg] = opindex; + lastWrite[reg] = opindex; numWrites[reg]++; }