X-Git-Url: https://git.libre-soc.org/?a=blobdiff_plain;f=src%2Farch%2Falpha%2Fisa%2Funknown.isa;h=7f5b9eb255b4b72800a5bef523663b2d3b599456;hb=4a51a39485800ad79867831b7c5a31aef06281cf;hp=1e95ccf688ef08d64c5bc4d3f31a59f842b2931b;hpb=b36796914af8bfc6729cc8a519e57572460e43e8;p=gem5.git diff --git a/src/arch/alpha/isa/unknown.isa b/src/arch/alpha/isa/unknown.isa index 1e95ccf68..7f5b9eb25 100644 --- a/src/arch/alpha/isa/unknown.isa +++ b/src/arch/alpha/isa/unknown.isa @@ -44,12 +44,11 @@ output decoder {{ output exec {{ Fault - Unknown::execute(%(CPU_exec_context)s *xc, - Trace::InstRecord *traceData) const + Unknown::execute(ExecContext *xc, Trace::InstRecord *traceData) const { panic("attempt to execute unknown instruction " "(inst 0x%08x, opcode 0x%x)", machInst, OPCODE); - return new UnimplementedOpcodeFault; + return std::make_shared(); } }};