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

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

27 *
28 * Authors: Kevin Lim
29 */
30
31#include "cpu/base_dyn_inst_impl.hh"
32#include "cpu/o3/isa_specific.hh"
33
34// Explicit instantiation
1/*
2 * Copyright (c) 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;

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

27 *
28 * Authors: Kevin Lim
29 */
30
31#include "cpu/base_dyn_inst_impl.hh"
32#include "cpu/o3/isa_specific.hh"
33
34// Explicit instantiation
35template class BaseDynInst<AlphaSimpleImpl>;
35template class BaseDynInst<O3CPUImpl>;
36
37template <>
38int
36
37template <>
38int
39BaseDynInst<AlphaSimpleImpl>::instcount = 0;
39BaseDynInst<O3CPUImpl>::instcount = 0;