summaryrefslogtreecommitdiff
path: root/lib/AsmParser
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-14 08:54:26 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-14 08:54:26 +0000
commit7be7848e17f60825f5fbc177b8a25909a30ddb00 (patch)
tree829167031026fff9cf34cb49fceda7e13bd9477b /lib/AsmParser
parentfd8d62c0b449b9070dc18355ac243c7fa78d40d6 (diff)
downloadllvm-7be7848e17f60825f5fbc177b8a25909a30ddb00.tar.gz
llvm-7be7848e17f60825f5fbc177b8a25909a30ddb00.tar.bz2
llvm-7be7848e17f60825f5fbc177b8a25909a30ddb00.tar.xz
Remove operator cast method in favor of querying with the correct method.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165899 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AsmParser')
-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 349dd0dad7..f4c9eefdef 100644
--- a/lib/AsmParser/LLParser.cpp
+++ b/lib/AsmParser/LLParser.cpp
@@ -1542,7 +1542,7 @@ bool LLParser::ParseFunctionType(Type *&Result) {
for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
if (!ArgList[i].Name.empty())
return Error(ArgList[i].Loc, "argument name invalid in function type");
- if (ArgList[i].Attrs)
+ if (ArgList[i].Attrs.hasAttributes())
return Error(ArgList[i].Loc,
"argument attributes invalid in function type");
}