From 7413cd74b115253e2b25df3c62742938032b1ade Mon Sep 17 00:00:00 2001 From: Hyung-Kyu Choi Date: Thu, 8 Dec 2016 17:05:54 +0900 Subject: [PATCH] Remove an unused local variable In lowerxarch.cpp, local variable srcUns is defined but not used at Lowering::LowerCast(GenTree* tree). Signed-off-by: Hyung-Kyu Choi Commit migrated from https://github.com/dotnet/coreclr/commit/05ace853150240cfd423a3636a7ee0ac59701a0b --- src/coreclr/src/jit/lowerxarch.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/coreclr/src/jit/lowerxarch.cpp b/src/coreclr/src/jit/lowerxarch.cpp index 94410c8..64283c8 100644 --- a/src/coreclr/src/jit/lowerxarch.cpp +++ b/src/coreclr/src/jit/lowerxarch.cpp @@ -3834,7 +3834,6 @@ void Lowering::LowerCast(GenTree* tree) var_types dstType = tree->CastToType(); var_types srcType = op1->TypeGet(); var_types tmpType = TYP_UNDEF; - bool srcUns = false; // force the srcType to unsigned if GT_UNSIGNED flag is set if (tree->gtFlags & GTF_UNSIGNED) -- 2.7.4