summaryrefslogtreecommitdiff
path: root/src/jit/emitxarch.h
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2018-01-16 13:12:39 -0800
committerTanner Gooding <tagoo@outlook.com>2018-01-16 13:12:39 -0800
commit1b66556cff0bfd720b6e7e29b9d4bb48f03fe94e (patch)
tree5b8f5c1db341ae0ddc212f8d01e4726a92158e19 /src/jit/emitxarch.h
parent15e8fc1d02036ef3b4d4e19ee941d64f5f851fa2 (diff)
downloadcoreclr-1b66556cff0bfd720b6e7e29b9d4bb48f03fe94e.tar.gz
coreclr-1b66556cff0bfd720b6e7e29b9d4bb48f03fe94e.tar.bz2
coreclr-1b66556cff0bfd720b6e7e29b9d4bb48f03fe94e.zip
Mark emitIns_R_A and emitIns_R_R_A to be not defined for legacy backend
Diffstat (limited to 'src/jit/emitxarch.h')
-rw-r--r--src/jit/emitxarch.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jit/emitxarch.h b/src/jit/emitxarch.h
index c301833857..873b35719c 100644
--- a/src/jit/emitxarch.h
+++ b/src/jit/emitxarch.h
@@ -365,9 +365,11 @@ void emitIns_R_R(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2)
void emitIns_R_R_I(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, int ival);
+#ifndef LEGACY_BACKEND
void emitIns_R_A(instruction ins, emitAttr attr, regNumber reg1, GenTreeIndir* indir, insFormat fmt);
void emitIns_R_R_A(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, GenTreeIndir* indir, insFormat fmt);
+#endif // !LEGACY_BACKEND
void emitIns_R_R_C(
instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, CORINFO_FIELD_HANDLE fldHnd, int offs);