Add some parens and silence a warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98428 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Benjamin Kramer 2010-03-13 07:40:34 +00:00
parent bffb5b39be
commit 669f6b3bee

View File

@ -166,7 +166,7 @@ public:
void addFixup(MCAsmFixup Fixup) {
// Enforce invariant that fixups are in offset order.
assert(Fixups.empty() || Fixup.Offset > Fixups.back().Offset &&
assert((Fixups.empty() || Fixup.Offset > Fixups.back().Offset) &&
"Fixups must be added in order!");
Fixups.push_back(Fixup);
}