mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-03 00:33:09 +00:00
Move the AttributesImpl header file into the VMCore directory so that it can be opaque.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165920 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cb3de0bc80
commit
05cc40d20c
@ -15,7 +15,6 @@
|
|||||||
#ifndef LLVM_ATTRIBUTES_H
|
#ifndef LLVM_ATTRIBUTES_H
|
||||||
#define LLVM_ATTRIBUTES_H
|
#define LLVM_ATTRIBUTES_H
|
||||||
|
|
||||||
#include "llvm/AttributesImpl.h"
|
|
||||||
#include "llvm/Support/MathExtras.h"
|
#include "llvm/Support/MathExtras.h"
|
||||||
#include "llvm/ADT/ArrayRef.h"
|
#include "llvm/ADT/ArrayRef.h"
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
@ -172,9 +171,7 @@ public:
|
|||||||
bool hasAttribute(AttrVal Val) const;
|
bool hasAttribute(AttrVal Val) const;
|
||||||
|
|
||||||
/// @brief Return true if attributes exist
|
/// @brief Return true if attributes exist
|
||||||
bool hasAttributes() const {
|
bool hasAttributes() const;
|
||||||
return Attrs && Attrs->hasAttributes();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// @brief Return true if the attributes are a non-null intersection.
|
/// @brief Return true if the attributes are a non-null intersection.
|
||||||
bool hasAttributes(const Attributes &A) const;
|
bool hasAttributes(const Attributes &A) const;
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#include "llvm/Attributes.h"
|
#include "llvm/Attributes.h"
|
||||||
|
#include "AttributesImpl.h"
|
||||||
#include "LLVMContextImpl.h"
|
#include "LLVMContextImpl.h"
|
||||||
#include "llvm/Type.h"
|
#include "llvm/Type.h"
|
||||||
#include "llvm/ADT/StringExtras.h"
|
#include "llvm/ADT/StringExtras.h"
|
||||||
@ -67,6 +68,10 @@ bool Attributes::hasAttribute(AttrVal Val) const {
|
|||||||
return Attrs && Attrs->hasAttribute(Val);
|
return Attrs && Attrs->hasAttribute(Val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Attributes::hasAttributes() const {
|
||||||
|
return Attrs && Attrs->hasAttributes();
|
||||||
|
}
|
||||||
|
|
||||||
bool Attributes::hasAttributes(const Attributes &A) const {
|
bool Attributes::hasAttributes(const Attributes &A) const {
|
||||||
return Attrs && Attrs->hasAttributes(A);
|
return Attrs && Attrs->hasAttributes(A);
|
||||||
}
|
}
|
||||||
|
@ -16,9 +16,9 @@
|
|||||||
#define LLVM_LLVMCONTEXT_IMPL_H
|
#define LLVM_LLVMCONTEXT_IMPL_H
|
||||||
|
|
||||||
#include "llvm/LLVMContext.h"
|
#include "llvm/LLVMContext.h"
|
||||||
|
#include "AttributesImpl.h"
|
||||||
#include "ConstantsContext.h"
|
#include "ConstantsContext.h"
|
||||||
#include "LeaksContext.h"
|
#include "LeaksContext.h"
|
||||||
#include "llvm/AttributesImpl.h"
|
|
||||||
#include "llvm/Constants.h"
|
#include "llvm/Constants.h"
|
||||||
#include "llvm/DerivedTypes.h"
|
#include "llvm/DerivedTypes.h"
|
||||||
#include "llvm/Metadata.h"
|
#include "llvm/Metadata.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user