diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2009-07-31 15:41:43 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2009-07-31 15:41:43 +0200 |
commit | e61c65627303b0e086a5347df3cb0d7e658e3a97 (patch) | |
tree | 90ce7b9684aba7ae0426990b26cc358479567f35 /gcc/config/i386/darwin.h | |
parent | ea2002ba74c91a555992984a01398529e4c2ed17 (diff) | |
download | gcc-e61c65627303b0e086a5347df3cb0d7e658e3a97.zip gcc-e61c65627303b0e086a5347df3cb0d7e658e3a97.tar.gz gcc-e61c65627303b0e086a5347df3cb0d7e658e3a97.tar.bz2 |
bsd.h (ASM_BYTE): New define.
* config/i386/bsd.h (ASM_BYTE): New define.
* config/i386/darwin.h (ASM_BYTE): Rename from ASM_BYTE_OP.
* config/i386/att.h (ASM_BYTE): New define. Use ASM_BYTE instead of
.byte. Use fputs or putc instead of fprintf where appropriate.
* config/i386/i386-interix.h: Use ASM_BYTE instead of .byte. Use
fputs or putc instead of fprintf where appropriate.
* config/i386/i386elf.h: Ditto.
* config/i386/sysv4.h: Ditto.
* config/i386/i386.c (TARGET_ASM_BYTE_OP): New define.
* config/i386/i386.md (x86_sahf_1): Use ASM_BYTE instead of .byte.
(*tls_global_dynamic_64): Ditto.
From-SVN: r150315
Diffstat (limited to 'gcc/config/i386/darwin.h')
-rw-r--r-- | gcc/config/i386/darwin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/darwin.h b/gcc/config/i386/darwin.h index 039f52f..eb9ee70 100644 --- a/gcc/config/i386/darwin.h +++ b/gcc/config/i386/darwin.h @@ -189,7 +189,7 @@ extern void darwin_x86_file_end (void); /* Assembler pseudos to introduce constants of various size. */ -#define ASM_BYTE_OP "\t.byte\t" +#define ASM_BYTE "\t.byte\t" #define ASM_SHORT "\t.word\t" #define ASM_LONG "\t.long\t" #define ASM_QUAD "\t.quad\t" |