From 7bfdfe7317bad3d6531a0c786c31b4c7ed681fe3 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Fri, 22 Feb 2013 00:40:12 +0000 Subject: Add a bitmask for NoBuiltin. This should *not* be used. llvm-svn: 175843 --- llvm/lib/IR/Attributes.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'llvm/lib/IR/Attributes.cpp') diff --git a/llvm/lib/IR/Attributes.cpp b/llvm/lib/IR/Attributes.cpp index 96b17c31e52..84d14b44192 100644 --- a/llvm/lib/IR/Attributes.cpp +++ b/llvm/lib/IR/Attributes.cpp @@ -394,7 +394,8 @@ uint64_t AttributeImpl::getAttrMask(Attribute::AttrKind Val) { case Attribute::StackProtectStrong: return 1ULL << 35; case Attribute::ThreadSafety: return 1ULL << 36; case Attribute::UninitializedChecks: return 1ULL << 37; - } + case Attribute::NoBuiltin: return 1ULL << 38; + } } //===----------------------------------------------------------------------===// -- cgit v1.2.3