diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2013-02-19 05:56:08 -0500 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2013-02-19 05:56:08 -0500 |
commit | a62afd094b75f52471ff2556c62c9c5f53d705e6 (patch) | |
tree | c7d7d1dbbfd29c7bba2ef11a124cef014f5dff0c /src/dev/i8254xGBe.cc | |
parent | 08a5fd328b25d2ff431dc8f593c2d1bf3816b36e (diff) | |
download | gem5-a62afd094b75f52471ff2556c62c9c5f53d705e6.tar.xz |
scons: Fix warnings issued by clang 3.2svn (XCode 4.6)
This patch fixes the warnings that clang3.2svn emit due to the "-Wall"
flag. There is one case of an uninitialised value in the ARM neon ISA
description, and then a whole range of unused private fields that are
pruned.
Diffstat (limited to 'src/dev/i8254xGBe.cc')
-rw-r--r-- | src/dev/i8254xGBe.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/dev/i8254xGBe.cc b/src/dev/i8254xGBe.cc index 9a3ddaeb7..ee24b3922 100644 --- a/src/dev/i8254xGBe.cc +++ b/src/dev/i8254xGBe.cc @@ -58,7 +58,6 @@ using namespace Net; IGbE::IGbE(const Params *p) : EtherDevice(p), etherInt(NULL), drainManager(NULL), - useFlowControl(p->use_flow_control), rxFifo(p->rx_fifo_size), txFifo(p->tx_fifo_size), rxTick(false), txTick(false), txFifoTick(false), rxDmaPacket(false), pktOffset(0), fetchDelay(p->fetch_delay), wbDelay(p->wb_delay), |