Wrap assembler macros in #ifdef __ASSEMBLER__.

This commit is contained in:
Ulrich Drepper 1998-10-22 11:17:42 +00:00
parent 5e9b4624ad
commit c4d9992549
1 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1997 Free Software Foundation, Inc. /* Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -22,5 +22,9 @@
/* Some definitions to allow the assembler in sysdeps/unix/ to build /* Some definitions to allow the assembler in sysdeps/unix/ to build
without needing ARM-specific versions of all the files. */ without needing ARM-specific versions of all the files. */
#ifdef __ASSEMBLER__
#define ret RETINSTR(mov, pc, r14) #define ret RETINSTR(mov, pc, r14)
#define MOVE(a,b) mov b,a #define MOVE(a,b) mov b,a
#endif