From: Hyung-Kyu Choi Date: Thu, 8 Dec 2016 08:05:54 +0000 (+0900) Subject: Remove an unused local variable X-Git-Tag: submit/tizen/20210909.063632~11030^2~8680^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7413cd74b115253e2b25df3c62742938032b1ade;p=platform%2Fupstream%2Fdotnet%2Fruntime.git 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 --- 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)