lsq_unit.cc (2817:273f7fb94f83) lsq_unit.cc (2818:a2b6429690b6)
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;

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

28 * Authors: Kevin Lim
29 * Korey Sewell
30 */
31
32#include "cpu/o3/isa_specific.hh"
33#include "cpu/o3/lsq_unit_impl.hh"
34
35// Force the instantiation of LDSTQ for all the implementations we care about.
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;

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

28 * Authors: Kevin Lim
29 * Korey Sewell
30 */
31
32#include "cpu/o3/isa_specific.hh"
33#include "cpu/o3/lsq_unit_impl.hh"
34
35// Force the instantiation of LDSTQ for all the implementations we care about.
36template class LSQUnit<AlphaSimpleImpl>;
36template class LSQUnit<O3CPUImpl>;
37
37