blob: 79018177ef83bc1019bfe28cb1a3ab5a732842bc [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
Duncan P. N. Exon Smithbe0a5e12014-03-21 18:29:15 +000012#include "InstrProfiling.h"
Duncan P. N. Exon Smith775c178a2014-03-20 19:23:53 +000013
Duncan P. N. Exon Smith9edbae02014-03-20 20:00:44 +000014int __llvm_profile_runtime;
Duncan P. N. Exon Smith775c178a2014-03-20 19:23:53 +000015
16}
17
18namespace {
19
20class RegisterAtExit {
21public:
Duncan P. N. Exon Smith9edbae02014-03-20 20:00:44 +000022 RegisterAtExit() { __llvm_profile_register_write_file_atexit(); }
Duncan P. N. Exon Smith775c178a2014-03-20 19:23:53 +000023};
24
25RegisterAtExit Registration;
26
27}