19500Snilay@cs.wisc.edu/*
29500Snilay@cs.wisc.edu * Copyright (c) 2013 Mark D. Hill and David A. Wood
39500Snilay@cs.wisc.edu * All rights reserved.
49500Snilay@cs.wisc.edu *
59500Snilay@cs.wisc.edu * Redistribution and use in source and binary forms, with or without
69500Snilay@cs.wisc.edu * modification, are permitted provided that the following conditions are
79500Snilay@cs.wisc.edu * met: redistributions of source code must retain the above copyright
89500Snilay@cs.wisc.edu * notice, this list of conditions and the following disclaimer;
99500Snilay@cs.wisc.edu * redistributions in binary form must reproduce the above copyright
109500Snilay@cs.wisc.edu * notice, this list of conditions and the following disclaimer in the
119500Snilay@cs.wisc.edu * documentation and/or other materials provided with the distribution;
129500Snilay@cs.wisc.edu * neither the name of the copyright holders nor the names of its
139500Snilay@cs.wisc.edu * contributors may be used to endorse or promote products derived from
149500Snilay@cs.wisc.edu * this software without specific prior written permission.
159500Snilay@cs.wisc.edu *
169500Snilay@cs.wisc.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
179500Snilay@cs.wisc.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
189500Snilay@cs.wisc.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
199500Snilay@cs.wisc.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
209500Snilay@cs.wisc.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
219500Snilay@cs.wisc.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
229500Snilay@cs.wisc.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
239500Snilay@cs.wisc.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
249500Snilay@cs.wisc.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
259500Snilay@cs.wisc.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
269500Snilay@cs.wisc.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
279500Snilay@cs.wisc.edu *
289500Snilay@cs.wisc.edu * Authors: Nilay Vaish
299500Snilay@cs.wisc.edu */
309500Snilay@cs.wisc.edu
319500Snilay@cs.wisc.edu#include "base/types.hh"
329500Snilay@cs.wisc.edu
339500Snilay@cs.wisc.edustd::ostream&
349500Snilay@cs.wisc.eduoperator<<(std::ostream &out, const Cycles & cycles)
359500Snilay@cs.wisc.edu{
369500Snilay@cs.wisc.edu    out << cycles.c;
379500Snilay@cs.wisc.edu    return out;
389500Snilay@cs.wisc.edu}
399500Snilay@cs.wisc.edu
40