mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
Shut up some compilers that can't accurately analyze variable usage
correctly and emit "may be used uninitialized" warnings. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32756 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
00d35c5a34
commit
b3307b232a
@ -4518,8 +4518,8 @@ Instruction *InstCombiner::visitICmpInst(ICmpInst &I) {
|
||||
if (KnownOne | KnownZero) {
|
||||
// Compute the Min, Max and RHS values based on the known bits. For the
|
||||
// EQ and NE we use unsigned values.
|
||||
uint64_t UMin, UMax, URHSVal;
|
||||
int64_t SMin, SMax, SRHSVal;
|
||||
uint64_t UMin = 0, UMax = 0, URHSVal = 0;
|
||||
int64_t SMin = 0, SMax = 0, SRHSVal = 0;
|
||||
if (ICmpInst::isSignedPredicate(I.getPredicate())) {
|
||||
SRHSVal = CI->getSExtValue();
|
||||
ComputeSignedMinMaxValuesFromKnownBits(Ty, KnownZero, KnownOne, SMin,
|
||||
|
Loading…
x
Reference in New Issue
Block a user