1 //===- FunctionInfo.cpp -----------------------------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "llvm/DebugInfo/GSYM/FunctionInfo.h"
15 raw_ostream
&llvm::gsym::operator<<(raw_ostream
&OS
, const FunctionInfo
&FI
) {
16 OS
<< '[' << HEX64(FI
.Range
.Start
) << '-' << HEX64(FI
.Range
.End
) << "): "
17 << "Name=" << HEX32(FI
.Name
) << '\n';
18 for (const auto &Line
: FI
.Lines
)