forked from OSchip/llvm-project
silence a bogus 'might be used uninit' warning from GCC.
llvm-svn: 92494
This commit is contained in:
parent
d443c0a02a
commit
2cb08e69b1
|
@ -1095,7 +1095,7 @@ Value *InstCombiner::OptimizePointerDifference(Value *LHS, Value *RHS,
|
|||
|
||||
// If LHS is a gep based on RHS or RHS is a gep based on LHS, we can optimize
|
||||
// this.
|
||||
bool Swapped;
|
||||
bool Swapped = false;
|
||||
GetElementPtrInst *GEP = 0;
|
||||
ConstantExpr *CstGEP = 0;
|
||||
|
||||
|
|
Loading…
Reference in New Issue