summaryrefslogtreecommitdiff
path: root/src/gpu-compute/hsa_object.cc
diff options
context:
space:
mode:
authorTony Gutierrez <anthony.gutierrez@amd.com>2016-02-17 11:46:02 -0500
committerTony Gutierrez <anthony.gutierrez@amd.com>2016-02-17 11:46:02 -0500
commit9a0f1be21fe5fc36d379387134498a76aaf88031 (patch)
treed19a21fb33b252d9b67c37d63b4bf13caebd895b /src/gpu-compute/hsa_object.cc
parent969babd26f475953e5f68033c5999bc9691bdc11 (diff)
downloadgem5-9a0f1be21fe5fc36d379387134498a76aaf88031.tar.xz
gpu-compute: remove brig_object.hh from hsa_object.cc
brig_object.hh is specific to the HSAIL ISA, and hence should not be included in ISA-agnostic code.
Diffstat (limited to 'src/gpu-compute/hsa_object.cc')
-rw-r--r--src/gpu-compute/hsa_object.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gpu-compute/hsa_object.cc b/src/gpu-compute/hsa_object.cc
index 91dfb160e..e74a45454 100644
--- a/src/gpu-compute/hsa_object.cc
+++ b/src/gpu-compute/hsa_object.cc
@@ -35,9 +35,10 @@
#include "gpu-compute/hsa_object.hh"
+#include <cassert>
#include <fstream>
-#include "gpu-compute/brig_object.hh"
+#include "base/misc.hh"
HsaObject::HsaObject(const std::string &fname)
: readonlyData(nullptr), filename(fname)