summaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorEarl Ou <shunhsingou@google.com>2018-09-07 15:16:53 +0800
committerEarl Ou <shunhsingou@google.com>2018-09-13 13:57:46 +0000
commita1e5fccd64d5693d6209dbc5a9fc406648d74a5d (patch)
tree7121f5acadf92ab2d26d0faa7ef9e66d803dc2c9 /src/cpu
parent91295ff980c17efb3ad013b9636017b58e49c071 (diff)
downloadgem5-a1e5fccd64d5693d6209dbc5a9fc406648d74a5d.tar.xz
Fix SConstruct for asan build
Sometimes it's easier to debug gem5 built with ASan enabled. This CL fixes some build error when using --with-asan. Bug: None Test: ./scripts/build_gem5 --with-asan --with-ubsan build/ARM/gem5.debug Change-Id: Iaaaaebc3f25749e11f97bf454ddd0153b3de56e7 Reviewed-on: https://gem5-review.googlesource.com/12511 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Reviewed-by: Anthony Gutierrez <anthony.gutierrez@amd.com> Maintainer: Anthony Gutierrez <anthony.gutierrez@amd.com>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/reg_class.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/reg_class.hh b/src/cpu/reg_class.hh
index 617d17e35..69da9cf7e 100644
--- a/src/cpu/reg_class.hh
+++ b/src/cpu/reg_class.hh
@@ -84,7 +84,7 @@ class RegId {
static constexpr size_t Scale = TheISA::NumVecElemPerVecReg;
friend struct std::hash<RegId>;
public:
- RegId() {};
+ RegId() : regClass(IntRegClass), regIdx(0), elemIdx(-1) {}
RegId(RegClass reg_class, RegIndex reg_idx)
: regClass(reg_class), regIdx(reg_idx), elemIdx(-1)
{