gpu-compute: fix bug in GPUDynInst::isScalarRegister()
This commit is contained in:
parent
5131a768c3
commit
7dad4377ec
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ GPUDynInst::isVectorRegister(int operandIdx)
|
|||
bool
|
||||
GPUDynInst::isScalarRegister(int operandIdx)
|
||||
{
|
||||
return staticInst->isVectorRegister(operandIdx);
|
||||
return staticInst->isScalarRegister(operandIdx);
|
||||
}
|
||||
|
||||
int
|
||||
|
|
Loading…
Reference in a new issue