Deleted Added
sdiff udiff text old ( 6397:cb1d7c957f49 ) new ( 6398:7a94cba72e02 )
full compact
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;

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

34#include "base/types.hh"
35#include "cpu/nativetrace.hh"
36
37namespace Trace {
38
39class ArmNativeTrace : public NativeTrace
40{
41 public:
42 ArmNativeTrace(const Params *p) : NativeTrace(p)
43 {}
44
45 void check(NativeTraceRecord *record);
46};
47
48} /* namespace Trace */
49
50#endif // __ARCH_ARM_NATIVETRACE_HH__