From: Tony Gutierrez Date: Mon, 16 May 2016 19:36:24 +0000 (-0400) Subject: gpu-compute: fix bug in GPUDynInst::isScalarRegister() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7dad4377eccebfeedbe3dde1886eead7197baa06;p=gem5.git gpu-compute: fix bug in GPUDynInst::isScalarRegister() --- diff --git a/src/gpu-compute/gpu_dyn_inst.cc b/src/gpu-compute/gpu_dyn_inst.cc index 337ff9d4f..2f35a983c 100644 --- a/src/gpu-compute/gpu_dyn_inst.cc +++ b/src/gpu-compute/gpu_dyn_inst.cc @@ -84,7 +84,7 @@ GPUDynInst::isVectorRegister(int operandIdx) bool GPUDynInst::isScalarRegister(int operandIdx) { - return staticInst->isVectorRegister(operandIdx); + return staticInst->isScalarRegister(operandIdx); } int