diff options
author | Tony Gutierrez <anthony.gutierrez@amd.com> | 2016-02-17 11:46:02 -0500 |
---|---|---|
committer | Tony Gutierrez <anthony.gutierrez@amd.com> | 2016-02-17 11:46:02 -0500 |
commit | 9a0f1be21fe5fc36d379387134498a76aaf88031 (patch) | |
tree | d19a21fb33b252d9b67c37d63b4bf13caebd895b /src/gpu-compute | |
parent | 969babd26f475953e5f68033c5999bc9691bdc11 (diff) | |
download | gem5-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')
-rw-r--r-- | src/gpu-compute/hsa_object.cc | 3 |
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) |