]> granicus.if.org Git - llvm/commit
Rectify r213231. Use proper version of 'ComputeNumSignBits'.
authorSuyog Sarda <suyog.sarda@samsung.com>
Thu, 17 Jul 2014 19:07:00 +0000 (19:07 +0000)
committerSuyog Sarda <suyog.sarda@samsung.com>
Thu, 17 Jul 2014 19:07:00 +0000 (19:07 +0000)
commitadf8ae4c10441eff11e98e3fc7ab123a55743fea
tree5dce20307c68d95904bc51ed3615ace0f2db8d2c
parentbe406de2251080a4a4c12c5bdec2eb1b92d44347
Rectify r213231. Use proper version of 'ComputeNumSignBits'.

Earlier when the code was in InstCombine, we were calling the version of ComputeNumSignBits in InstCombine.h
that automatically added the DataLayout* before calling into ValueTracking.
When the code moved to InstSimplify, we are calling into ValueTracking directly without passing in the DataLayout*.
This patch rectifies the same by passing DataLayout in ComputeNumSignBits.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213295 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Analysis/InstructionSimplify.cpp