1//===- DWARFLocationExpression.cpp ----------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/DebugInfo/DWARF/DWARFLocationExpression.h"
10#include "llvm/ADT/iterator_range.h"
11#include "llvm/Support/FormatVariadic.h"
12
13using namespace llvm;
14
15raw_ostream &llvm::operator<<(raw_ostream &OS,
16 const DWARFLocationExpression &Loc) {
17 return OS << Loc.Range << ": "
18 << formatv(Fmt: "{0}", Vals: make_range(x: Loc.Expr.begin(), y: Loc.Expr.end()));
19}
20