gpu-compute: fix bug in GPUDynInst::isScalarRegister()

This commit is contained in:
Tony Gutierrez 2016-05-16 15:36:24 -04:00
parent 5131a768c3
commit 7dad4377ec

View file

@ -84,7 +84,7 @@ GPUDynInst::isVectorRegister(int operandIdx)
bool bool
GPUDynInst::isScalarRegister(int operandIdx) GPUDynInst::isScalarRegister(int operandIdx)
{ {
return staticInst->isVectorRegister(operandIdx); return staticInst->isScalarRegister(operandIdx);
} }
int int