Deleted Added
sdiff udiff text old ( 11793:ef606668d247 ) new ( 12404:fe5af2331a48 )
full compact
1/*
2 * Copyright (c) 2003-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;

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

30 */
31
32#include "cpu/static_inst.hh"
33
34#include <iostream>
35
36#include "sim/core.hh"
37
38StaticInstPtr StaticInst::nullStaticInstPtr;
39
40using namespace std;
41
42StaticInst::~StaticInst()
43{
44 if (cachedDisassembly)
45 delete cachedDisassembly;
46}

--- 66 unchanged lines hidden ---