//===- llvm/AttributeMask.h - Mask for Attributes ---------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // /// \file // This file declares the AttributeMask class. // //===----------------------------------------------------------------------===// #ifndef LLVM_IR_ATTRIBUTEMASK_H #define LLVM_IR_ATTRIBUTEMASK_H #include "llvm/ADT/SmallString.h" #include "llvm/IR/Attributes.h" #include <bitset> #include <cassert> #include <set> namespace llvm { //===----------------------------------------------------------------------===// /// \class /// This class stores enough information to efficiently remove some attributes /// from an existing AttrBuilder, AttributeSet or AttributeList. class AttributeMask { … }; } // end namespace llvm #endif // LLVM_IR_ATTRIBUTEMASK_H