I fixed this and kicked off the normal sunday regressions.

Ali

On Feb 13, 2011, at 3:41 PM, Ali Saidi wrote:

> changeset 404170ece9a4 in /z/repo/m5
> details: http://repo.m5sim.org/m5?cmd=changeset;node=404170ece9a4
> description:
>       O3: Fix GCC 4.2.4 complaint
> 
> diffstat:
> 
> src/cpu/o3/inst_queue_impl.hh |  2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diffs (12 lines):
> 
> diff -r e8f4bb35dca9 -r 404170ece9a4 src/cpu/o3/inst_queue_impl.hh
> --- a/src/cpu/o3/inst_queue_impl.hh   Sat Feb 12 11:41:20 2011 -0600
> +++ b/src/cpu/o3/inst_queue_impl.hh   Sun Feb 13 16:51:15 2011 -0500
> @@ -749,7 +749,7 @@
>     DynInstPtr deferred_mem_inst;
>     int total_deferred_mem_issued = 0;
>     while (total_deferred_mem_issued < totalWidth &&
> -           (deferred_mem_inst = getDeferredMemInstToExecute()) != NULL) {
> +           (deferred_mem_inst = getDeferredMemInstToExecute()) != 0) {
>         issueToExecuteQueue->access(0)->size++;
>         instsToExecute.push_back(deferred_mem_inst);
>         total_deferred_mem_issued++;
> _______________________________________________
> m5-dev mailing list
> [email protected]
> http://m5sim.org/mailman/listinfo/m5-dev
> 

_______________________________________________
m5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/m5-dev

Reply via email to