Merge pull request #5357 from ligfx/jitintegerwarning

Jit64: fix braces warning in Jit_Integer
This commit is contained in:
Mat M 2017-05-02 18:44:02 -04:00 committed by GitHub
commit c51e40f92f
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ void Jit64::GenerateOverflow()
// We need to do this without modifying flags so as not to break stuff that assumes flags
// aren't clobbered (carry, branch merging): speed doesn't really matter here (this is really
// rare).
static const std::array<u8, 4> ovtable = {0, 0, XER_SO_MASK, XER_SO_MASK};
static const std::array<u8, 4> ovtable = {{0, 0, XER_SO_MASK, XER_SO_MASK}};
MOVZX(32, 8, RSCRATCH, PPCSTATE(xer_so_ov));
LEA(64, RSCRATCH2, MConst(ovtable));
MOV(8, R(RSCRATCH), MRegSum(RSCRATCH, RSCRATCH2));