X86: Get rid of "inline" on the MicroPanic constructor in decoder.cc.
authorGabe Black <gblack@eecs.umich.edu>
Tue, 15 Feb 2011 23:58:16 +0000 (15:58 -0800)
committerGabe Black <gblack@eecs.umich.edu>
Tue, 15 Feb 2011 23:58:16 +0000 (15:58 -0800)
This was making certain versions of gcc omit the function from the object file
which would break the build.

src/arch/x86/isa/microops/debug.isa

index c2735565d7560779288aeea1b892cb7f6da16c65..220c1af972336ce4eb1611b4294eeaf544a326f7 100644 (file)
@@ -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,