Removing unused code, via jdarpinian.

This commit is contained in:
Ben Vanik
2013-12-25 20:57:07 -08:00
parent 85dec3bf44
commit abc5aac7ee
3 changed files with 0 additions and 3 deletions

View File

@@ -334,7 +334,6 @@ int InstrEmit_stvrx_(PPCFunctionBuilder& f, InstrData& i, uint32_t vd, uint32_t
// we could optimize this to prevent the other load/mask, in that case.
Value* ea = ra ? f.Add(f.LoadGPR(ra), f.LoadGPR(rb)) : f.LoadGPR(rb);
Value* eb = f.And(f.Truncate(ea, INT8_TYPE), f.LoadConstant((int8_t)0xF));
Value* ebits = f.Mul(eb, f.LoadConstant((int8_t)8));
Value* new_value = f.LoadVR(vd);
// ea &= ~0xF (load takes care of this)
Value* old_value = f.ByteSwap(f.Load(ea, VEC128_TYPE));