diff options
author | Jakub Jelinek <jakub@redhat.com> | 2004-05-05 13:06:18 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2004-05-05 13:06:18 +0000 |
commit | 6f079ae3d93abaaf8db9cfda081e506f16e89e15 (patch) | |
tree | 6256418022ac640e4da2eee0f2c4b632f6448c19 /gas/config/tc-s390.c | |
parent | 32b99774f760000a23e301739edbc3d88086a008 (diff) | |
download | gdb-6f079ae3d93abaaf8db9cfda081e506f16e89e15.zip gdb-6f079ae3d93abaaf8db9cfda081e506f16e89e15.tar.gz gdb-6f079ae3d93abaaf8db9cfda081e506f16e89e15.tar.bz2 |
* tc-s390.h (md_do_align, HANDLE_ALIGN): Remove.
(NOP_OPCODE): Define.
(s390_align_code): Remove prototype.
* tc-s390.c (s390_align_code): Remove.
Diffstat (limited to 'gas/config/tc-s390.c')
-rw-r--r-- | gas/config/tc-s390.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/gas/config/tc-s390.c b/gas/config/tc-s390.c index c450eae..4fafbec 100644 --- a/gas/config/tc-s390.c +++ b/gas/config/tc-s390.c @@ -1,5 +1,5 @@ /* tc-s390.c -- Assemble for the S390 - Copyright 2000, 2001, 2002, 2003 Free Software Foundation, Inc. + Copyright 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. Contributed by Martin Schwidefsky (schwidefsky@de.ibm.com). This file is part of GAS, the GNU Assembler. @@ -540,19 +540,6 @@ s390_md_end () bfd_set_arch_mach (stdoutput, bfd_arch_s390, bfd_mach_s390_31); } -void -s390_align_code (fragP, count) - fragS *fragP; - int count; -{ - /* We use nop pattern 0x0707. */ - if (count > 0) - { - memset (fragP->fr_literal + fragP->fr_fix, 0x07, count); - fragP->fr_var = count; - } -} - /* Insert an operand value into an instruction. */ static void |