diff options
Diffstat (limited to 'tools/llvm-xray/xray-converter.cc')
-rw-r--r-- | tools/llvm-xray/xray-converter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/llvm-xray/xray-converter.cc b/tools/llvm-xray/xray-converter.cc index 31275e2902f2..1bc9b15ae12c 100644 --- a/tools/llvm-xray/xray-converter.cc +++ b/tools/llvm-xray/xray-converter.cc @@ -98,7 +98,7 @@ void TraceConverter::exportAsYAML(const Trace &Records, raw_ostream &OS) { : std::to_string(R.FuncId), R.TSC, R.TId}); } - Output Out(OS); + Output Out(OS, nullptr, 0); Out << Trace; } |