diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2017-02-28 21:07:18 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2017-02-28 21:07:18 +0000 |
commit | 365919ebc13fcd6ddae24bfcc7c4720dc682c78b (patch) | |
tree | fe2bf4fc65fd9e5c13d565a4c449157efa9dbe59 /tools/llvm-xray/xray-converter.cc | |
parent | 9c618dddcd075579cf4f157ba4a03d088c166dab (diff) | |
download | src-365919ebc13fcd6ddae24bfcc7c4720dc682c78b.tar.gz src-365919ebc13fcd6ddae24bfcc7c4720dc682c78b.zip |
Vendor import of llvm release_40 branch r296509:vendor/llvm/llvm-release_40-r296509
Notes
Notes:
svn path=/vendor/llvm/dist/; revision=314411
svn path=/vendor/llvm/llvm-release_40-r296509/; revision=314412; tag=vendor/llvm/llvm-release_40-r296509
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; } |