From 6574682ff532a9f7ed8d21d8abe8b4c98528cd9e Mon Sep 17 00:00:00 2001 From: comex Date: Sun, 24 Aug 2014 16:22:19 -0400 Subject: [PATCH] Remove unused variable m_zero. --- Source/Core/Core/PowerPC/JitCommon/Jit_Util.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Source/Core/Core/PowerPC/JitCommon/Jit_Util.cpp b/Source/Core/Core/PowerPC/JitCommon/Jit_Util.cpp index 9aa58b7f5b..c9e09abe48 100644 --- a/Source/Core/Core/PowerPC/JitCommon/Jit_Util.cpp +++ b/Source/Core/Core/PowerPC/JitCommon/Jit_Util.cpp @@ -541,8 +541,6 @@ void EmuCodeBlock::Force25BitPrecision(X64Reg xmm, X64Reg tmp) static u32 GC_ALIGNED16(temp32); static u64 GC_ALIGNED16(temp64); -static const float GC_ALIGNED16(m_zero[]) = { 0.0f, 0.0f, 0.0f, 0.0f }; - // Since the following float conversion functions are used in non-arithmetic PPC float instructions, // they must convert floats bitexact and never flush denormals to zero or turn SNaNs into QNaNs. // This means we can't use CVTSS2SD/CVTSD2SS :(