Fix a typo.

llvm-svn: 108962
This commit is contained in:
Dan Gohman 2010-07-20 23:10:36 +00:00
parent 5c2e65b7bf
commit b22dd85bb3
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ static bool StripDebugInfo(Module &M) {
++FI)
for (BasicBlock::iterator BI = FI->begin(), BE = FI->end(); BI != BE;
++BI) {
Changed != !BI->getDebugLoc().isUnknown();
Changed |= !BI->getDebugLoc().isUnknown();
BI->setDebugLoc(DebugLoc());
}