mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
|
//===--- ForceLinkageMacros.h - The LLVM Compiler Driver --------*- C++ -*-===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open
|
||
|
// Source License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
//
|
||
|
// Preprocessor magic that forces references to static libraries - common
|
||
|
// macros used by both driver and plugins.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef LLVM_INCLUDE_COMPILER_DRIVER_FORCE_LINKAGE_MACROS_H
|
||
|
#define LLVM_INCLUDE_COMPILER_DRIVER_FORCE_LINKAGE_MACROS_H
|
||
|
|
||
|
#define LLVMC_FORCE_LINKAGE_PREFIX(PluginName) ForceLinkage ## PluginName
|
||
|
|
||
|
#define LLVMC_FORCE_LINKAGE_FUN(PluginName) \
|
||
|
LLVMC_FORCE_LINKAGE_PREFIX(PluginName)
|
||
|
|
||
|
#define LLVMC_FORCE_LINKAGE_DECL(PluginName) \
|
||
|
void LLVMC_FORCE_LINKAGE_FUN(PluginName) ()
|
||
|
|
||
|
#define LLVMC_FORCE_LINKAGE_CALL(PluginName) \
|
||
|
LLVMC_FORCE_LINKAGE_FUN(PluginName) ()
|
||
|
|
||
|
#endif // LLVM_INCLUDE_COMPILER_DRIVER_FORCE_LINKAGE_MACROS_H
|