mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Andy some time ago already created the new API but didn't go through and update the old occurences. I did that in this PR and then deprecated the old API. The tree is clean, so I could just remove it, but I decided to be nicer to downstream people by deprecating it first.
27 lines
1.0 KiB
C++
27 lines
1.0 KiB
C++
//===--- ValueUtils.cpp ---------------------------------------------------===//
|
|
//
|
|
// This source file is part of the Swift.org open source project
|
|
//
|
|
// Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors
|
|
// Licensed under Apache License v2.0 with Runtime Library Exception
|
|
//
|
|
// See https://swift.org/LICENSE.txt for license information
|
|
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "swift/SIL/ValueUtils.h"
|
|
#include "swift/Basic/STLExtras.h"
|
|
#include "swift/SIL/SILFunction.h"
|
|
|
|
using namespace swift;
|
|
|
|
ValueOwnershipKind swift::mergeSILValueOwnership(ArrayRef<SILValue> values) {
|
|
auto range = makeTransformRange(values,
|
|
[](SILValue v) {
|
|
assert(v->getType().isObject());
|
|
return v->getOwnershipKind();
|
|
});
|
|
return ValueOwnershipKind::merge(range);
|
|
}
|