summaryrefslogtreecommitdiff
path: root/src/jit/emit.h
diff options
context:
space:
mode:
authorMike Danes <onemihaid@hotmail.com>2017-10-28 10:26:27 +0300
committerMike Danes <onemihaid@hotmail.com>2017-10-28 10:26:27 +0300
commit8861233e5b03104ce9ce4cfa699bfc13eed5aab8 (patch)
treed13f744b3eaf4885ad49f9caec695e8d1c0a3659 /src/jit/emit.h
parent06b1f44dff37c66c906cdd699f3c7b2c1ade8f8f (diff)
downloadcoreclr-8861233e5b03104ce9ce4cfa699bfc13eed5aab8.tar.gz
coreclr-8861233e5b03104ce9ce4cfa699bfc13eed5aab8.tar.bz2
coreclr-8861233e5b03104ce9ce4cfa699bfc13eed5aab8.zip
Change emitFltOrDblConst parameters
It's preferable to avoid trees in the emit functions so they're usable in more situations.
Diffstat (limited to 'src/jit/emit.h')
-rw-r--r--src/jit/emit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jit/emit.h b/src/jit/emit.h
index 94511395b3..9092652afe 100644
--- a/src/jit/emit.h
+++ b/src/jit/emit.h
@@ -1710,7 +1710,7 @@ private:
UNATIVE_OFFSET emitInstCodeSz(instrDesc* id);
#ifndef LEGACY_BACKEND
- CORINFO_FIELD_HANDLE emitFltOrDblConst(GenTreeDblCon* tree, emitAttr attr = EA_UNKNOWN);
+ CORINFO_FIELD_HANDLE emitFltOrDblConst(double constValue, emitAttr attr);
regNumber emitInsBinary(instruction ins, emitAttr attr, GenTree* dst, GenTree* src);
regNumber emitInsTernary(instruction ins, emitAttr attr, GenTree* dst, GenTree* src1, GenTree* src2);
void emitInsLoadInd(instruction ins, emitAttr attr, regNumber dstReg, GenTreeIndir* mem);