summaryrefslogtreecommitdiff
path: root/src/jit
diff options
context:
space:
mode:
authorHyung-Kyu Choi <hk0110.choi@samsung.com>2016-12-08 17:05:54 +0900
committerHyung-Kyu Choi <hk0110.choi@samsung.com>2016-12-08 17:19:38 +0900
commit05ace853150240cfd423a3636a7ee0ac59701a0b (patch)
treea03ea4b9ac57d9f6ee95a42451ebceb5ff6b8408 /src/jit
parent957b6d9f317c12462c377342a132708494b6f34c (diff)
downloadcoreclr-05ace853150240cfd423a3636a7ee0ac59701a0b.tar.gz
coreclr-05ace853150240cfd423a3636a7ee0ac59701a0b.tar.bz2
coreclr-05ace853150240cfd423a3636a7ee0ac59701a0b.zip
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 <hk0110.choi@samsung.com>
Diffstat (limited to 'src/jit')
-rw-r--r--src/jit/lowerxarch.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/jit/lowerxarch.cpp b/src/jit/lowerxarch.cpp
index 94410c854f..64283c8c28 100644
--- a/src/jit/lowerxarch.cpp
+++ b/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)