blob: 6116b0c1f3a4879d78dc967f9138ba6a3aae7191 [file] [log] [blame]
Duncan P. N. Exon Smith775c178a2014-03-20 19:23:53 +00001//===- InstrProfilingRuntime.cpp - PGO runtime initialization -------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10extern "C" {
11
12#include "InstrProfilingExtras.h"
13
Duncan P. N. Exon Smith9edbae02014-03-20 20:00:44 +000014extern int __llvm_profile_runtime;
15int __llvm_profile_runtime;
Duncan P. N. Exon Smith775c178a2014-03-20 19:23:53 +000016
17}
18
19namespace {
20
21class RegisterAtExit {
22public:
Duncan P. N. Exon Smith9edbae02014-03-20 20:00:44 +000023 RegisterAtExit() { __llvm_profile_register_write_file_atexit(); }
Duncan P. N. Exon Smith775c178a2014-03-20 19:23:53 +000024};
25
26RegisterAtExit Registration;
27
28}