gpu-compute: remove unnecessary member from class
The clang compiler complains that the wavefront member in the GpuISA class is unused. This changeset removes the member, because it does not appear serve a purpose.
This commit is contained in:
@@ -49,7 +49,7 @@ WavefrontParams::create()
|
||||
}
|
||||
|
||||
Wavefront::Wavefront(const Params *p)
|
||||
: SimObject(p), callArgMem(nullptr), _gpuISA(*this)
|
||||
: SimObject(p), callArgMem(nullptr), _gpuISA()
|
||||
{
|
||||
lastTrace = 0;
|
||||
simdId = p->simdId;
|
||||
|
||||
Reference in New Issue
Block a user