From: Kevin Lim Date: Mon, 6 Nov 2006 01:29:38 +0000 (-0500) Subject: Initialize pointer to NULL. X-Git-Tag: m5_2.0_beta2~53^2~3^2~16 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=067c9c5531cb591aa7a2472ebbe366683fcfeb0d;p=gem5.git Initialize pointer to NULL. src/cpu/o3/lsq_unit_impl.hh: Be sure to initialize pointer to NULL. --HG-- extra : convert_revision : 917d5119e4bd8eae10959ed07069d8c694315c7a --- diff --git a/src/cpu/o3/lsq_unit_impl.hh b/src/cpu/o3/lsq_unit_impl.hh index d940d7cb3..9a0e48819 100644 --- a/src/cpu/o3/lsq_unit_impl.hh +++ b/src/cpu/o3/lsq_unit_impl.hh @@ -131,6 +131,7 @@ LSQUnit::init(Params *params, LSQ *lsq_ptr, unsigned maxLQEntries, usedPorts = 0; cachePorts = params->cachePorts; + retryPkt = NULL; memDepViolator = NULL; blockedLoadSeqNum = 0;