summaryrefslogtreecommitdiff
path: root/src/gpu-compute
diff options
context:
space:
mode:
authorTony Gutierrez <anthony.gutierrez@amd.com>2017-02-27 13:18:51 -0500
committerTony Gutierrez <anthony.gutierrez@amd.com>2017-02-27 13:18:51 -0500
commit8602aea4e5edd0cb455fca03237e430babe0b6f2 (patch)
tree80ba85e6d38c76a65a0d2f1c901e25073e689ecd /src/gpu-compute
parent833fb10ed48ea3bcd7dff5ae0768a119db415f4e (diff)
downloadgem5-8602aea4e5edd0cb455fca03237e430babe0b6f2.tar.xz
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.
Diffstat (limited to 'src/gpu-compute')
-rw-r--r--src/gpu-compute/wavefront.cc2
1 files changed, 1 insertions, 1 deletions
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;