summaryrefslogtreecommitdiff
path: root/src/mem/ruby/network/orion/Wire.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem/ruby/network/orion/Wire.cc')
-rw-r--r--src/mem/ruby/network/orion/Wire.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mem/ruby/network/orion/Wire.cc b/src/mem/ruby/network/orion/Wire.cc
index ba78dd48e..3bbd615f3 100644
--- a/src/mem/ruby/network/orion/Wire.cc
+++ b/src/mem/ruby/network/orion/Wire.cc
@@ -118,6 +118,14 @@ void Wire::calc_opt_buffering(
(1.4*1.5*BufferDriveResistance*c_c))/(0.7*r*BufferInputCapacitance));
break;
}
+ default:
+ {
+ // make gcc happy although all the cases of the enum
+ // are already covered
+ *k_ = 0;
+ *h_ = 0;
+ break;
+ }
}
return;
}