]> sourceware.org Git - glibc.git/blame - sysdeps/i386/asm-syntax.h
* sysdeps/i386/asm-syntax.h (R, MEM, MEM_DISP, MEM_INDEX,
[glibc.git] / sysdeps / i386 / asm-syntax.h
CommitLineData
6952e59e 1/* Definitions for x86 syntax variations.
43c81906 2 Copyright (C) 1992, 1994, 1995, 1997, 2000 Free Software Foundation, Inc.
28f540f4 3
6952e59e
UD
4 This file is part of the GNU C Library. Its master source is NOT part of
5 the C library, however. The master source lives in the GNU MP Library.
28f540f4 6
6952e59e
UD
7 The GNU C Library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public License as
9 published by the Free Software Foundation; either version 2 of the
10 License, or (at your option) any later version.
28f540f4 11
6952e59e
UD
12 The GNU C Library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
28f540f4 16
6952e59e
UD
17 You should have received a copy of the GNU Library General Public
18 License along with the GNU C Library; see the file COPYING.LIB. If not,
19 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
28f540f4
RM
21
22#undef ALIGN
43c81906
GM
23#if defined NOLOG_ALIGN || defined HAVE_ELF
24# define ALIGN(log) .align 1<<log
28f540f4 25#else
43c81906 26# define ALIGN(log) .align log
28f540f4 27#endif
5929563f
UD
28
29#undef L
30#ifdef __ELF__
43c81906
GM
31# ifdef __STDC__
32# define L(body) .L##body
33# else
34# define L(body) .L/**/body
35# endif
5929563f 36#else
43c81906
GM
37# ifdef __STDC__
38# define L(body) L##body
39# else
40# define L(body) L/**/body
41# endif
5929563f 42#endif
This page took 0.137488 seconds and 5 git commands to generate.