diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2011-02-15 15:58:16 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2011-02-15 15:58:16 -0800 |
commit | fde8b5c3876ad431b193989ab64c802d1cec1ed0 (patch) | |
tree | b7cab9daa75953d610bb5b02cb173e3de09e60fb | |
parent | 989138970e3512aa9c1b37810ba64a742c00543e (diff) | |
download | gem5-fde8b5c3876ad431b193989ab64c802d1cec1ed0.tar.xz |
X86: Get rid of "inline" on the MicroPanic constructor in decoder.cc.
This was making certain versions of gcc omit the function from the object file
which would break the build.
-rw-r--r-- | src/arch/x86/isa/microops/debug.isa | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/isa/microops/debug.isa b/src/arch/x86/isa/microops/debug.isa index c2735565d..220c1af97 100644 --- a/src/arch/x86/isa/microops/debug.isa +++ b/src/arch/x86/isa/microops/debug.isa @@ -98,7 +98,7 @@ def template MicroDebugExecute {{ }}; def template MicroDebugConstructor {{ - inline %(class_name)s::%(class_name)s( + %(class_name)s::%(class_name)s( ExtMachInst machInst, const char * instMnem, uint64_t setFlags, std::string _message, uint8_t _cc) : %(base_class)s(machInst, "%(func)s", instMnem, |