aboutsummaryrefslogtreecommitdiff
path: root/src/gpgpu-sim/shader.h
diff options
context:
space:
mode:
authorNathan Conrad <[email protected]>2018-04-22 23:31:42 -0400
committerNathan Conrad <[email protected]>2018-04-22 23:34:08 -0400
commit373d64290239f3ed74d98b20494383f03fe189b6 (patch)
tree918be07864511a5d7a5fca0be5a75fc4e8b6335e /src/gpgpu-sim/shader.h
parentf97a699ea5bee0a9df79afec40c0142d7ff8c5be (diff)
Some classes were referred to as a class and a struct (reported as clang warnings). This makes these consistent.
Diffstat (limited to 'src/gpgpu-sim/shader.h')
-rw-r--r--src/gpgpu-sim/shader.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gpgpu-sim/shader.h b/src/gpgpu-sim/shader.h
index bdd8dbe..ea8c019 100644
--- a/src/gpgpu-sim/shader.h
+++ b/src/gpgpu-sim/shader.h
@@ -286,7 +286,7 @@ typedef std::bitset<WARP_PER_CTA_MAX> warp_set_t;
int register_bank(int regnum, int wid, unsigned num_banks, unsigned bank_warp_shift);
class shader_core_ctx;
-class shader_core_config;
+struct shader_core_config;
class shader_core_stats;
enum scheduler_prioritization_type
@@ -967,7 +967,7 @@ struct ifetch_buffer_t {
unsigned m_warp_id;
};
-class shader_core_config;
+struct shader_core_config;
class simd_function_unit {
public: