mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
gold plugin: call llvm_shutdown so that -stats works.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222787 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9f4bb0420d
commit
2fbbd7a369
5
test/tools/gold/stats.ll
Normal file
5
test/tools/gold/stats.ll
Normal file
@ -0,0 +1,5 @@
|
||||
; RUN: llvm-as %s -o %t.o
|
||||
; RUN: ld -plugin %llvmshlibdir/LLVMgold.so -shared \
|
||||
; RUN: -plugin-opt=-stats %t.o -o %t2 2>&1 | FileCheck %s
|
||||
|
||||
; CHECK: Statistics Collected
|
@ -28,6 +28,7 @@
|
||||
#include "llvm/PassManager.h"
|
||||
#include "llvm/Support/FormattedStream.h"
|
||||
#include "llvm/Support/Host.h"
|
||||
#include "llvm/Support/ManagedStatic.h"
|
||||
#include "llvm/Support/MemoryBuffer.h"
|
||||
#include "llvm/Support/TargetRegistry.h"
|
||||
#include "llvm/Support/TargetSelect.h"
|
||||
@ -838,6 +839,8 @@ static ld_plugin_status all_symbols_read_hook(void) {
|
||||
Ret = allSymbolsReadHook(&ApiFile);
|
||||
}
|
||||
|
||||
llvm_shutdown();
|
||||
|
||||
if (options::TheOutputType == options::OT_BC_ONLY ||
|
||||
options::TheOutputType == options::OT_DISABLE)
|
||||
exit(0);
|
||||
|
Loading…
Reference in New Issue
Block a user