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.
This commit is contained in:
parent
989138970e
commit
fde8b5c387
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue