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:
Tony Gutierrez 2017-02-27 13:18:51 -05:00
parent 833fb10ed4
commit 8602aea4e5
2 changed files with 2 additions and 7 deletions

View file

@ -42,8 +42,6 @@
#include "base/misc.hh"
#include "gpu-compute/misc.hh"
class Wavefront;
namespace HsailISA
{
typedef uint64_t MiscReg;
@ -51,7 +49,7 @@ namespace HsailISA
class GPUISA
{
public:
GPUISA(Wavefront &wf) : wavefront(wf)
GPUISA()
{
}
@ -74,9 +72,6 @@ namespace HsailISA
{
return old_pc + sizeof(RawMachInst);
}
private:
Wavefront &wavefront;
};
}

View file

@ -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;