swr/rast: Remove no-op VBROADCAST of vID

Reviewed-by: Bruce Cherniak <bruce.cherniak@intel.com>
This commit is contained in:
Tim Rowley 2017-12-11 08:38:46 -06:00
parent 01a57c11cb
commit ca59b2e75c
1 changed files with 2 additions and 2 deletions

View File

@ -3101,7 +3101,7 @@ Value* FetchJit::GenerateCompCtrlVector(const ComponentControl ctrl)
#else
Value* pId = BITCAST(LOAD(GEP(mpFetchInfo, { 0, SWR_FETCH_CONTEXT_VertexID })), mSimdFP32Ty);
#endif
return VBROADCAST(pId);
return pId;
}
case StoreInstanceId:
{
@ -3129,7 +3129,7 @@ Value* FetchJit::GenerateCompCtrlVector2(const ComponentControl ctrl)
Value *pId = JOIN2(pId_lo, pId_hi);
return VBROADCAST2(pId);
return pId;
}
case StoreInstanceId:
{