diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-03-25 17:42:20 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-03-25 17:42:20 +0000 |
commit | 66d11e9aa7ce6b2c81f001d9a433e3a886ae0b5e (patch) | |
tree | 0eb4fbfd286d8d23a539392bd42925fdd91aaae8 | |
parent | 9409a64eb07b1558191fd313eb6fc871f2b2a6a0 (diff) |
Remove assert. There may be target-dependent attributes left.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177878 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/CppBackend/CPPBackend.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/CppBackend/CPPBackend.cpp b/lib/Target/CppBackend/CPPBackend.cpp index 604abf93cc..3e69098edc 100644 --- a/lib/Target/CppBackend/CPPBackend.cpp +++ b/lib/Target/CppBackend/CPPBackend.cpp @@ -518,7 +518,6 @@ void CppWriter::printAttributes(const AttributeSet &PAL, attrs.removeAttribute(Attribute::StackAlignment); } - assert(!attrs.hasAttributes() && "Unhandled attribute!"); Out << "PAS = AttributeSet::get(mod->getContext(), "; if (index == ~0U) Out << "~0U,"; |