Deleted Added
sdiff udiff text old ( 7693:f1db1000d957 ) new ( 7707:e5b6f1157be3 )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

47#include "arch/x86/regs/segment.hh"
48#include "arch/x86/utility.hh"
49#include "arch/x86/x86_traits.hh"
50#include "cpu/base.hh"
51#include "sim/system.hh"
52
53namespace X86ISA {
54
55uint64_t
56getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
57{
58#if FULL_SYSTEM
59 panic("getArgument() not implemented for x86!\n");
60#else
61 panic("getArgument() only implemented for FULL_SYSTEM\n");
62 M5_DUMMY_RETURN
63#endif
64}
65

--- 180 unchanged lines hidden ---