1 /*===- InstrProfilingVersionVar.c - profile version variable setup  -------===*\
2 |*
3 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 |* See https://llvm.org/LICENSE.txt for license information.
5 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 |*
7 \*===----------------------------------------------------------------------===*/
8 
9 #include "InstrProfiling.h"
10 
11 /* uint64 __llvm_profile_raw_version
12  *
13  * The runtime should only provide its own definition of this symbol when the
14  * user has not specified one. Set this up by moving the runtime's copy of this
15  * symbol to an object file within the archive.
16  *
17  * Hide this symbol everywhere except Apple platforms, where its presence is
18  * checked by the TAPI tool.
19  */
20 #if !defined(__APPLE__)
21 #define VERSION_VAR_VISIBILITY COMPILER_RT_VISIBILITY
22 #else
23 #define VERSION_VAR_VISIBILITY
24 #endif
25 VERSION_VAR_VISIBILITY COMPILER_RT_WEAK uint64_t INSTR_PROF_RAW_VERSION_VAR =
26     INSTR_PROF_RAW_VERSION;
27