Change '|' to '&' in conditional.
authorRichard Trieu <rtrieu@google.com>
Wed, 31 Jul 2019 04:41:05 +0000 (04:41 +0000)
committerRichard Trieu <rtrieu@google.com>
Wed, 31 Jul 2019 04:41:05 +0000 (04:41 +0000)
commit33cdbff2a78a5aef35b75b28a3a9c2103e6977b4
treef07e0d019d0c3156b6d6dad91b6f552c9184d7be
parentb22860da61ad68edf1f92c6fea8afe11c9c4036b
Change '|' to '&' in conditional.

Bitwise-or with a non-zero constant will always evaluate to true.  Switch to
bitwise-and which will only evalute to true if the specified bit is set in the
other operand.

llvm-svn: 367386
lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp