diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-01-24 00:06:56 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-01-24 00:06:56 +0000 |
commit | d2e493bb6596619d47476820a0864e933a7c53b0 (patch) | |
tree | 6404723ae7255a5672b6b05f1de35b6d6e9127ce /llvm/lib/IR/LLVMContextImpl.h | |
parent | be8229c8c0d3711942be72d38a2f59d0ee985520 (diff) | |
download | bcm5719-llvm-d2e493bb6596619d47476820a0864e933a7c53b0.tar.gz bcm5719-llvm-d2e493bb6596619d47476820a0864e933a7c53b0.zip |
Create a new class: AttributeSetNode.
This is a helper class for the AttributeSetImpl class. It holds a set of
attributes that apply to a single element: function, return type, or
parameter.
These are uniqued.
llvm-svn: 173310
Diffstat (limited to 'llvm/lib/IR/LLVMContextImpl.h')
-rw-r--r-- | llvm/lib/IR/LLVMContextImpl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/IR/LLVMContextImpl.h b/llvm/lib/IR/LLVMContextImpl.h index 30fd6666fda..cc7ca5e1288 100644 --- a/llvm/lib/IR/LLVMContextImpl.h +++ b/llvm/lib/IR/LLVMContextImpl.h @@ -249,6 +249,7 @@ public: FoldingSet<AttributeImpl> AttrsSet; FoldingSet<AttributeSetImpl> AttrsLists; + FoldingSet<AttributeSetNode> AttrsSetNodes; StringMap<Value*> MDStringCache; |