Files
swift-mirror/lib/SIL/Utils/ValueUtils.cpp
Michael Gottesman 1e6187c4f4 [sil] Update all usages of old API SILValue::getOwnershipKind() in favor of new ValueBase::getOwnershipKind().
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.
2022-07-26 11:46:23 -07:00

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);
}