Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/jit/assertionprop.cpp')
-rw-r--r--src/coreclr/jit/assertionprop.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/coreclr/jit/assertionprop.cpp b/src/coreclr/jit/assertionprop.cpp
index 9a4be3c6e4e..a3797e0f51a 100644
--- a/src/coreclr/jit/assertionprop.cpp
+++ b/src/coreclr/jit/assertionprop.cpp
@@ -3197,8 +3197,7 @@ GenTree* Compiler::optVNConstantPropOnTree(BasicBlock* block, GenTree* tree)
case TYP_SIMD32:
{
- simd32_t value = vnStore->ConstantValue<simd32_t>(vnCns);
-
+ simd32_t value = vnStore->ConstantValue<simd32_t>(vnCns);
GenTreeVecCon* vecCon = gtNewVconNode(tree->TypeGet());
vecCon->gtSimd32Val = value;