From 8602aea4e5edd0cb455fca03237e430babe0b6f2 Mon Sep 17 00:00:00 2001 From: Tony Gutierrez Date: Mon, 27 Feb 2017 13:18:51 -0500 Subject: 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. --- src/gpu-compute/wavefront.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/gpu-compute/wavefront.cc') diff --git a/src/gpu-compute/wavefront.cc b/src/gpu-compute/wavefront.cc index cce76044f..de36dd54f 100644 --- a/src/gpu-compute/wavefront.cc +++ b/src/gpu-compute/wavefront.cc @@ -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; -- cgit v1.2.3