From 9a0f1be21fe5fc36d379387134498a76aaf88031 Mon Sep 17 00:00:00 2001 From: Tony Gutierrez Date: Wed, 17 Feb 2016 11:46:02 -0500 Subject: [PATCH] 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. --- src/gpu-compute/hsa_object.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 #include -#include "gpu-compute/brig_object.hh" +#include "base/misc.hh" HsaObject::HsaObject(const std::string &fname) : readonlyData(nullptr), filename(fname)