1 /*===- InstrProfilingBiasVar.c - profile counter bias 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 /* The runtime should only provide its own definition of this symbol when the
12  * user has not specified one. Set this up by moving the runtime's copy of this
13  * symbol to an object file within the archive.
14  */
15 COMPILER_RT_WEAK intptr_t __llvm_profile_counter_bias = -1;
16