summaryrefslogtreecommitdiff
path: root/src/cpu/o3/lsq.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/o3/lsq.hh')
-rw-r--r--src/cpu/o3/lsq.hh12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/cpu/o3/lsq.hh b/src/cpu/o3/lsq.hh
index ca92790b8..6db005cb3 100644
--- a/src/cpu/o3/lsq.hh
+++ b/src/cpu/o3/lsq.hh
@@ -406,16 +406,16 @@ class LSQ
*/
void
addRequest(Addr addr, unsigned size,
- const std::vector<bool>& byteEnable)
+ const std::vector<bool>& byte_enable)
{
- if (byteEnable.empty() ||
- isAnyActiveElement(byteEnable.begin(), byteEnable.end())) {
+ if (byte_enable.empty() ||
+ isAnyActiveElement(byte_enable.begin(), byte_enable.end())) {
auto request = std::make_shared<Request>(_inst->getASID(),
addr, size, _flags, _inst->masterId(),
_inst->instAddr(), _inst->contextId(),
std::move(_amo_op));
- if (!byteEnable.empty()) {
- request->setByteEnable(byteEnable);
+ if (!byte_enable.empty()) {
+ request->setByteEnable(byte_enable);
}
_requests.push_back(request);
}
@@ -1040,7 +1040,7 @@ class LSQ
Fault pushRequest(const DynInstPtr& inst, bool isLoad, uint8_t *data,
unsigned int size, Addr addr, Request::Flags flags,
uint64_t *res, AtomicOpFunctorPtr amo_op,
- const std::vector<bool>& byteEnable);
+ const std::vector<bool>& byte_enable);
/** The CPU pointer. */
O3CPU *cpu;