OSDN Git Service

2005-04-08 Kelley Cook <kcook@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / acconfig.h
1 // Symbols and macros for libstdc++ -*- C++ -*-
2
3 // @BOTTOM@
4 //
5 // Define symbol versioning in assember directives. If symbol
6 // versioning is beigng used, and the assembler supports this kind of
7 // thing, then use it.
8 // NB: _GLIBCXX_AT_AT is a hack to work around quoting issues in m4.
9 #if _GLIBCXX_SYMVER
10   #define _GLIBCXX_ASM_SYMVER(cur, old, version) \
11    asm (".symver " #cur "," #old _GLIBCXX_AT_AT #version);
12 #else
13   #define _GLIBCXX_ASM_SYMVER(cur, old, version)
14 #endif