rob.cc (2817:273f7fb94f83) rob.cc (2818:a2b6429690b6)
1/*
2 * Copyright (c) 2004-2005 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;

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

28 * Authors: Kevin Lim
29 * Nathan Binkert
30 */
31
32#include "cpu/o3/isa_specific.hh"
33#include "cpu/o3/rob_impl.hh"
34
35// Force instantiation of InstructionQueue.
1/*
2 * Copyright (c) 2004-2005 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;

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

28 * Authors: Kevin Lim
29 * Nathan Binkert
30 */
31
32#include "cpu/o3/isa_specific.hh"
33#include "cpu/o3/rob_impl.hh"
34
35// Force instantiation of InstructionQueue.
36template class ROB<AlphaSimpleImpl>;
36template class ROB<O3CPUImpl>;