1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

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 4a8e4ee52a
commit 8304a93ff4

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;