diff options
| author | Bill Wendling <isanbard@gmail.com> | 2012-12-30 10:32:01 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2012-12-30 10:32:01 +0000 |
| commit | 698e84fc4f0012b43e21e78d61bc59cf2c12768f (patch) | |
| tree | bbfcd86288583d51578837af9fc65e690b84e10d /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
| parent | 6190254e0f64cd87ec3a29c19e535d6f833ffd0d (diff) | |
| download | bcm5719-llvm-698e84fc4f0012b43e21e78d61bc59cf2c12768f.tar.gz bcm5719-llvm-698e84fc4f0012b43e21e78d61bc59cf2c12768f.zip | |
Remove the Function::getFnAttributes method in favor of using the AttributeSet
directly.
This is in preparation for removing the use of the 'Attribute' class as a
collection of attributes. That will shift to the AttributeSet class instead.
llvm-svn: 171253
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index ee61c3748d2..7e95f33fdf1 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -7751,8 +7751,9 @@ bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) { // We only use vectors if the constant is known to be zero and the // function is not marked with the noimplicitfloat attribute. - if (NonZero || (DAG.getMachineFunction().getFunction()->getFnAttributes(). - hasAttribute(Attribute::NoImplicitFloat))) + if (NonZero || (DAG.getMachineFunction().getFunction()->getAttributes(). + hasAttribute(AttributeSet::FunctionIndex, + Attribute::NoImplicitFloat))) LastLegalVectorType = 0; // Check if we found a legal integer type to store. |

