diff options
Diffstat (limited to 'llvm/tools/llvm-lto/llvm-lto.cpp')
-rw-r--r-- | llvm/tools/llvm-lto/llvm-lto.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-lto/llvm-lto.cpp b/llvm/tools/llvm-lto/llvm-lto.cpp index 29d613f8cd2..b35384a0b35 100644 --- a/llvm/tools/llvm-lto/llvm-lto.cpp +++ b/llvm/tools/llvm-lto/llvm-lto.cpp @@ -208,7 +208,7 @@ static int createCombinedFunctionIndex(StringRef Command) { << ".thinlto.bc': " << EC.message() << "\n"; return 1; } - WriteFunctionSummaryToFile(&CombinedIndex, OS); + WriteFunctionSummaryToFile(CombinedIndex, OS); OS.close(); return 0; } |