From: Tanner Gooding Date: Wed, 17 Jan 2018 15:08:47 +0000 (-0800) Subject: Updating emitIns_R_R_A_I to not be defined for the legacy backend. X-Git-Tag: accepted/tizen/base/20180629.140029~121^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b5e9ebc73f2bc4efdc7cfbf5c041fed2be95a54;p=platform%2Fupstream%2Fcoreclr.git Updating emitIns_R_R_A_I to not be defined for the legacy backend. --- diff --git a/src/jit/emitxarch.cpp b/src/jit/emitxarch.cpp index 249d6ad..3f554f4 100644 --- a/src/jit/emitxarch.cpp +++ b/src/jit/emitxarch.cpp @@ -4124,6 +4124,7 @@ void emitter::emitIns_R_R_S(instruction ins, emitAttr attr, regNumber reg1, regN emitCurIGsize += sz; } +#ifndef LEGACY_BACKEND void emitter::emitIns_R_R_A_I( instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, GenTreeIndir* indir, int ival, insFormat fmt) { @@ -4145,6 +4146,7 @@ void emitter::emitIns_R_R_A_I( dispIns(id); emitCurIGsize += sz; } +#endif // !LEGACY_BACKEND void emitter::emitIns_R_R_C_I( instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, CORINFO_FIELD_HANDLE fldHnd, int offs, int ival) diff --git a/src/jit/emitxarch.h b/src/jit/emitxarch.h index 2ed2728..9c176bc 100644 --- a/src/jit/emitxarch.h +++ b/src/jit/emitxarch.h @@ -386,8 +386,10 @@ void emitIns_R_R_S(instruction ins, emitAttr attr, regNumber reg1, regNumber reg void emitIns_R_R_R(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, regNumber reg3); +#ifndef LEGACY_BACKEND void emitIns_R_R_A_I( instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, GenTreeIndir* indir, int ival, insFormat fmt); +#endif // !LEGACY_BACKEND void emitIns_R_R_C_I( instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, CORINFO_FIELD_HANDLE fldHnd, int offs, int ival);