summaryrefslogtreecommitdiff
path: root/src/jit/emitxarch.h
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2018-06-02 20:41:06 -0700
committerTanner Gooding <tagoo@outlook.com>2018-06-04 15:34:09 -0700
commitb69128007a783429ae9113a9033fe48eba5570bc (patch)
tree38b3276fac4eba2a1525368d1ea58b742e7200dd /src/jit/emitxarch.h
parentcdc42699de04995b5d1f3eedf20bf5ca6fc33267 (diff)
downloadcoreclr-b69128007a783429ae9113a9033fe48eba5570bc.tar.gz
coreclr-b69128007a783429ae9113a9033fe48eba5570bc.tar.bz2
coreclr-b69128007a783429ae9113a9033fe48eba5570bc.zip
Updating the x86 HWIntrinsics to support containment for most one-operand intrinsics.
Diffstat (limited to 'src/jit/emitxarch.h')
-rw-r--r--src/jit/emitxarch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/emitxarch.h b/src/jit/emitxarch.h
index 663e42c535..7e7bffbbe3 100644
--- a/src/jit/emitxarch.h
+++ b/src/jit/emitxarch.h
@@ -318,7 +318,7 @@ void emitIns_R_R_I(instruction ins, emitAttr attr, regNumber reg1, regNumber reg
void emitIns_AR(instruction ins, emitAttr attr, regNumber base, int offs);
-void emitIns_R_A(instruction ins, emitAttr attr, regNumber reg1, GenTreeIndir* indir, insFormat fmt);
+void emitIns_R_A(instruction ins, emitAttr attr, regNumber reg1, GenTreeIndir* indir);
void emitIns_R_A_I(instruction ins, emitAttr attr, regNumber reg1, GenTreeIndir* indir, int ival);
@@ -328,7 +328,7 @@ void emitIns_R_C_I(instruction ins, emitAttr attr, regNumber reg1, CORINFO_FIELD
void emitIns_R_S_I(instruction ins, emitAttr attr, regNumber reg1, int varx, int offs, int ival);
-void emitIns_R_R_A(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, GenTreeIndir* indir, insFormat fmt);
+void emitIns_R_R_A(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, GenTreeIndir* indir);
void emitIns_R_R_AR(instruction ins, emitAttr attr, regNumber reg1, regNumber reg2, regNumber base, int offs);