@@ -73,21 +73,21 @@ template <class... _mem_access_params> class lsu final {
73
73
74
74
private:
75
75
static constexpr int32_t _burst_coalesce_val =
76
- GetValue <burst_coalesce_impl, _mem_access_params...>::value;
76
+ _GetValue <burst_coalesce_impl, _mem_access_params...>::value;
77
77
static constexpr uint8_t _burst_coalesce =
78
78
_burst_coalesce_val == 1 ? BURST_COALESCE : 0 ;
79
79
80
80
static constexpr int32_t _cache_val =
81
- GetValue <cache, _mem_access_params...>::value;
81
+ _GetValue <cache, _mem_access_params...>::value;
82
82
static constexpr uint8_t _cache = (_cache_val > 0 ) ? CACHE : 0 ;
83
83
84
84
static constexpr int32_t _statically_coalesce_val =
85
- GetValue <statically_coalesce_impl, _mem_access_params...>::value;
85
+ _GetValue <statically_coalesce_impl, _mem_access_params...>::value;
86
86
static constexpr uint8_t _dont_statically_coalesce =
87
87
_statically_coalesce_val == 0 ? STATICALLY_COALESCE : 0 ;
88
88
89
89
static constexpr int32_t _prefetch_val =
90
- GetValue <prefetch_impl, _mem_access_params...>::value;
90
+ _GetValue <prefetch_impl, _mem_access_params...>::value;
91
91
static constexpr uint8_t _prefetch = _prefetch_val ? PREFETCH : 0 ;
92
92
93
93
static_assert (_cache_val >= 0 , " cache size parameter must be non-negative" );
0 commit comments