diff options
| author | 2019-06-23 21:36:31 +0000 | |
|---|---|---|
| committer | 2019-06-23 21:36:31 +0000 | |
| commit | 23f101f37937a1bd4a29726cab2f76e0fb038b35 (patch) | |
| tree | f7da7d6b32c2e07114da399150bfa88d72187012 /gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp | |
| parent | sort previous; ok deraadt (diff) | |
| download | wireguard-openbsd-23f101f37937a1bd4a29726cab2f76e0fb038b35.tar.xz wireguard-openbsd-23f101f37937a1bd4a29726cab2f76e0fb038b35.zip | |
Import LLVM 8.0.0 release including clang, lld and lldb.
Diffstat (limited to 'gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp')
| -rw-r--r-- | gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp b/gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp index 9606b3da247..cdcd0172690 100644 --- a/gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp +++ b/gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp @@ -88,11 +88,10 @@ void CGProfilePass::addModuleFlags( std::vector<Metadata *> Nodes; for (auto E : Counts) { - SmallVector<Metadata *, 3> Vals; - Vals.push_back(ValueAsMetadata::get(E.first.first)); - Vals.push_back(ValueAsMetadata::get(E.first.second)); - Vals.push_back(MDB.createConstant( - ConstantInt::get(Type::getInt64Ty(Context), E.second))); + Metadata *Vals[] = {ValueAsMetadata::get(E.first.first), + ValueAsMetadata::get(E.first.second), + MDB.createConstant(ConstantInt::get( + Type::getInt64Ty(Context), E.second))}; Nodes.push_back(MDNode::get(Context, Vals)); } |
