diff options
Diffstat (limited to 'src/jit/simd.cpp')
-rw-r--r-- | src/jit/simd.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/jit/simd.cpp b/src/jit/simd.cpp index 128118466c..6c6de0ea03 100644 --- a/src/jit/simd.cpp +++ b/src/jit/simd.cpp @@ -2481,7 +2481,6 @@ GenTree* Compiler::impSIMDIntrinsic(OPCODE opcode, unsigned initCount = argCount - 1; unsigned elementCount = getSIMDVectorLength(size, baseType); noway_assert(initCount == elementCount); - GenTree* nextArg = op2; // Build a GT_LIST with the N values. // We must maintain left-to-right order of the args, but we will pop @@ -2490,7 +2489,6 @@ GenTree* Compiler::impSIMDIntrinsic(OPCODE opcode, GenTree* list = nullptr; GenTree* firstArg = nullptr; GenTree* prevArg = nullptr; - int offset = 0; bool areArgsContiguous = true; for (unsigned i = 0; i < initCount; i++) { @@ -2651,7 +2649,6 @@ GenTree* Compiler::impSIMDIntrinsic(OPCODE opcode, assert(op2->TypeGet() == TYP_REF); GenTree* arrayRefForArgChk = op2; GenTree* argRngChk = nullptr; - GenTree* asg = nullptr; if ((arrayRefForArgChk->gtFlags & GTF_SIDE_EFFECT) != 0) { op2 = fgInsertCommaFormTemp(&arrayRefForArgChk); @@ -2756,7 +2753,6 @@ GenTree* Compiler::impSIMDIntrinsic(OPCODE opcode, // op2 - VSmall // op1 - byref of VLarge assert(baseType == TYP_FLOAT); - unsigned elementByteCount = 4; GenTree* op4 = nullptr; if (argCount == 4) |