Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit abe3c46

Browse files
authored
Merge pull request #15900 from tannergooding/sse-intrinsics
Updating emitIns_R_R_A_I to not be defined for the legacy backend.
2 parents 33ce0e2 + 0b5e9eb commit abe3c46

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/jit/emitxarch.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4124,6 +4124,7 @@ void emitter::emitIns_R_R_S(instruction ins, emitAttr attr, regNumber reg1, regN
41244124
emitCurIGsize += sz;
41254125
}
41264126

4127+
#ifndef LEGACY_BACKEND
41274128
void emitter::emitIns_R_R_A_I(
41284129
instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, GenTreeIndir* indir, int ival, insFormat fmt)
41294130
{
@@ -4145,6 +4146,7 @@ void emitter::emitIns_R_R_A_I(
41454146
dispIns(id);
41464147
emitCurIGsize += sz;
41474148
}
4149+
#endif // !LEGACY_BACKEND
41484150

41494151
void emitter::emitIns_R_R_C_I(
41504152
instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, CORINFO_FIELD_HANDLE fldHnd, int offs, int ival)

src/jit/emitxarch.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,10 @@ void emitIns_R_R_S(instruction ins, emitAttr attr, regNumber reg1, regNumber reg
386386

387387
void emitIns_R_R_R(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, regNumber reg3);
388388

389+
#ifndef LEGACY_BACKEND
389390
void emitIns_R_R_A_I(
390391
instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, GenTreeIndir* indir, int ival, insFormat fmt);
392+
#endif // !LEGACY_BACKEND
391393

392394
void emitIns_R_R_C_I(
393395
instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, CORINFO_FIELD_HANDLE fldHnd, int offs, int ival);

0 commit comments

Comments
 (0)