forked from OSchip/llvm-project
Remove unnecessary #ifndef NDEBUG guard around assert. NFC.
Found by Hal Finkel in the review of AttributeSets. http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20150504/275058.html llvm-svn: 236662
This commit is contained in:
parent
538ef562bd
commit
cc151ccdcf
|
@ -819,12 +819,10 @@ AttributeSet AttributeSet::removeAttributes(LLVMContext &C, unsigned Index,
|
||||||
if (!pImpl) return AttributeSet();
|
if (!pImpl) return AttributeSet();
|
||||||
if (!Attrs.pImpl) return *this;
|
if (!Attrs.pImpl) return *this;
|
||||||
|
|
||||||
#ifndef NDEBUG
|
|
||||||
// FIXME it is not obvious how this should work for alignment.
|
// FIXME it is not obvious how this should work for alignment.
|
||||||
// For now, say we can't pass in alignment, which no current use does.
|
// For now, say we can't pass in alignment, which no current use does.
|
||||||
assert(!Attrs.hasAttribute(Index, Attribute::Alignment) &&
|
assert(!Attrs.hasAttribute(Index, Attribute::Alignment) &&
|
||||||
"Attempt to change alignment!");
|
"Attempt to change alignment!");
|
||||||
#endif
|
|
||||||
|
|
||||||
// Add the attribute slots before the one we're trying to add.
|
// Add the attribute slots before the one we're trying to add.
|
||||||
SmallVector<AttributeSet, 4> AttrSet;
|
SmallVector<AttributeSet, 4> AttrSet;
|
||||||
|
|
Loading…
Reference in New Issue