Deleted Added
sdiff udiff text old ( 2689:dbf969c18a65 ) new ( 2698:d5f35d41e017 )
full compact
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 122 unchanged lines hidden (view full) ---

131{
132 iewStage = iew_ptr;
133
134 for (int tid=0; tid < numThreads; tid++) {
135 thread[tid].setIEW(iew_ptr);
136 }
137}
138
139template <class Impl>
140void
141LSQ<Impl>::switchOut()
142{
143 for (int tid = 0; tid < numThreads; tid++) {
144 thread[tid].switchOut();
145 }
146}

--- 383 unchanged lines hidden ---