diff options
Diffstat (limited to 'llvm/lib/IR/Metadata.cpp')
| -rw-r--r-- | llvm/lib/IR/Metadata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Metadata.cpp b/llvm/lib/IR/Metadata.cpp index 865c68a2ef1..5d84bb75cfb 100644 --- a/llvm/lib/IR/Metadata.cpp +++ b/llvm/lib/IR/Metadata.cpp @@ -502,7 +502,7 @@ static bool isOperandUnresolved(Metadata *Op) { void MDNode::countUnresolvedOperands() { assert(NumUnresolved == 0 && "Expected unresolved ops to be uncounted"); assert(isUniqued() && "Expected this to be uniqued"); - NumUnresolved = std::count_if(op_begin(), op_end(), isOperandUnresolved); + NumUnresolved = count_if(operands(), isOperandUnresolved); } void MDNode::makeUniqued() { |

