summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/GlobalOpt.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-04 06:58:52 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-04 06:58:52 +0000
commitb44e3ee1a7af03062706cfa22ef4c0e57dfddca7 (patch)
treecba2024a0d10371f42dad44e48f39094dfdccc56 /lib/Transforms/IPO/GlobalOpt.cpp
parent5df15c692b944b6c46ec6d532fc286b7e0000d5d (diff)
downloadllvm-b44e3ee1a7af03062706cfa22ef4c0e57dfddca7.tar.gz
llvm-b44e3ee1a7af03062706cfa22ef4c0e57dfddca7.tar.bz2
llvm-b44e3ee1a7af03062706cfa22ef4c0e57dfddca7.tar.xz
Use method to query for attributes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165209 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/GlobalOpt.cpp')
-rw-r--r--lib/Transforms/IPO/GlobalOpt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/GlobalOpt.cpp b/lib/Transforms/IPO/GlobalOpt.cpp
index b1ba6be5ff..7e3b45b6dd 100644
--- a/lib/Transforms/IPO/GlobalOpt.cpp
+++ b/lib/Transforms/IPO/GlobalOpt.cpp
@@ -2063,7 +2063,7 @@ static void ChangeCalleesToFastCall(Function *F) {
static AttrListPtr StripNest(const AttrListPtr &Attrs) {
for (unsigned i = 0, e = Attrs.getNumSlots(); i != e; ++i) {
- if ((Attrs.getSlot(i).Attrs & Attribute::Nest) == 0)
+ if (!Attrs.getSlot(i).Attrs.hasNestAttr())
continue;
// There can be only one.