summaryrefslogtreecommitdiff
path: root/lib/AsmParser/LLParser.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-09 09:17:28 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-09 09:17:28 +0000
commitdc4efcbdba7b9a8868ca7e329116910be894ca47 (patch)
treefab1682fc936b5ee31fec1591347150f11ddf362 /lib/AsmParser/LLParser.cpp
parent2e879bcd52583335c753c005d203bf2ffe8b67b5 (diff)
downloadllvm-dc4efcbdba7b9a8868ca7e329116910be894ca47.tar.gz
llvm-dc4efcbdba7b9a8868ca7e329116910be894ca47.tar.bz2
llvm-dc4efcbdba7b9a8868ca7e329116910be894ca47.tar.xz
Use the enum value of the attributes when removing them from the attributes builder.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165495 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser/LLParser.cpp')
-rw-r--r--lib/AsmParser/LLParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AsmParser/LLParser.cpp b/lib/AsmParser/LLParser.cpp
index 76ac0f7b4a..86bc7aced1 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -2757,7 +2757,7 @@ bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
// If the alignment was parsed as an attribute, move to the alignment field.
if (FuncAttrs.hasAlignmentAttr()) {
Alignment = FuncAttrs.getAlignment();
- FuncAttrs.removeAlignmentAttr();
+ FuncAttrs.removeAttribute(Attributes::Alignment);
}
// Okay, if we got here, the function is syntactically valid. Convert types