xref: /freebsd-src/contrib/llvm-project/compiler-rt/lib/profile/InstrProfilingVersionVar.c (revision e8d8bef961a50d4dc22501cde4fb9fb0be1b2532)
1*e8d8bef9SDimitry Andric /*===- InstrProfilingVersionVar.c - profile version variable setup  -------===*\
2*e8d8bef9SDimitry Andric |*
3*e8d8bef9SDimitry Andric |* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*e8d8bef9SDimitry Andric |* See https://llvm.org/LICENSE.txt for license information.
5*e8d8bef9SDimitry Andric |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*e8d8bef9SDimitry Andric |*
7*e8d8bef9SDimitry Andric \*===----------------------------------------------------------------------===*/
8*e8d8bef9SDimitry Andric 
9*e8d8bef9SDimitry Andric #include "InstrProfiling.h"
10*e8d8bef9SDimitry Andric 
11*e8d8bef9SDimitry Andric /* uint64 __llvm_profile_raw_version
12*e8d8bef9SDimitry Andric  *
13*e8d8bef9SDimitry Andric  * The runtime should only provide its own definition of this symbol when the
14*e8d8bef9SDimitry Andric  * user has not specified one. Set this up by moving the runtime's copy of this
15*e8d8bef9SDimitry Andric  * symbol to an object file within the archive.
16*e8d8bef9SDimitry Andric  */
17*e8d8bef9SDimitry Andric COMPILER_RT_WEAK uint64_t INSTR_PROF_RAW_VERSION_VAR = INSTR_PROF_RAW_VERSION;
18