Gabe Black has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/13617

Change subject: null: Claim to use 64 bit floating point registers.
......................................................................

null: Claim to use 64 bit floating point registers.

The NULL ISA doesn't actually have registers, so this setting doesn't
matter. By making it 64 bits the ISA is more compatible with the other
ISAs.

Change-Id: I2c9b6d9a6f612719b8b00eb9dbed55fa2159e9b5
---
M src/arch/null/registers.hh
1 file changed, 2 insertions(+), 2 deletions(-)



diff --git a/src/arch/null/registers.hh b/src/arch/null/registers.hh
index 3d27d95..5dd8732 100644
--- a/src/arch/null/registers.hh
+++ b/src/arch/null/registers.hh
@@ -47,8 +47,8 @@
 namespace NullISA {

 typedef uint64_t IntReg;
-typedef uint32_t FloatRegBits;
-typedef float FloatReg;
+typedef uint64_t FloatRegBits;
+typedef double FloatReg;
 typedef uint8_t CCReg;
 typedef uint64_t MiscReg;
 const RegIndex ZeroReg = 0;

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/13617
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: I2c9b6d9a6f612719b8b00eb9dbed55fa2159e9b5
Gerrit-Change-Number: 13617
Gerrit-PatchSet: 1
Gerrit-Owner: Gabe Black <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to