gpu-compute: fix bug in GPUDynInst::isScalarRegister()
authorTony Gutierrez <anthony.gutierrez@amd.com>
Mon, 16 May 2016 19:36:24 +0000 (15:36 -0400)
committerTony Gutierrez <anthony.gutierrez@amd.com>
Mon, 16 May 2016 19:36:24 +0000 (15:36 -0400)
src/gpu-compute/gpu_dyn_inst.cc

index 337ff9d4fd4ee803416d2e3dc077fa39a9dfe7da..2f35a983c527c725808188f677d3dc86857a9c77 100644 (file)
@@ -84,7 +84,7 @@ GPUDynInst::isVectorRegister(int operandIdx)
 bool
 GPUDynInst::isScalarRegister(int operandIdx)
 {
-    return staticInst->isVectorRegister(operandIdx);
+    return staticInst->isScalarRegister(operandIdx);
 }
 
 int