silence a bogus 'might be used uninit' warning from GCC.

llvm-svn: 92494
This commit is contained in:
Chris Lattner 2010-01-04 18:48:26 +00:00
parent d443c0a02a
commit 2cb08e69b1
1 changed files with 1 additions and 1 deletions

View File

@ -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;