diff options
author | Clinton Popetz <cpopetz@cpopetz.com> | 2000-01-14 17:58:29 +0000 |
---|---|---|
committer | Clinton Popetz <cpopetz@cpopetz.com> | 2000-01-14 17:58:29 +0000 |
commit | a19d8eb03e2cf8ba0bf15f98e4f5b1e7d693b6f3 (patch) | |
tree | 8ac8d563f995fa4fb54dfb00b5f48d9f8fcaeac3 /gas/config/tc-mips.h | |
parent | 6b3b007bde0f9f46d184b8ecac57e1f91d3571f6 (diff) | |
download | gdb-a19d8eb03e2cf8ba0bf15f98e4f5b1e7d693b6f3.zip gdb-a19d8eb03e2cf8ba0bf15f98e4f5b1e7d693b6f3.tar.gz gdb-a19d8eb03e2cf8ba0bf15f98e4f5b1e7d693b6f3.tar.bz2 |
2000-01-13 Clinton Popetz <cpopetz@cygnus.com>
* config/tc-mips.c (mips_do_align): New function.
* config/tc-mips.h (md_do_align): Define.
Diffstat (limited to 'gas/config/tc-mips.h')
-rw-r--r-- | gas/config/tc-mips.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gas/config/tc-mips.h b/gas/config/tc-mips.h index ccfd998..a17c642 100644 --- a/gas/config/tc-mips.h +++ b/gas/config/tc-mips.h @@ -55,6 +55,9 @@ extern int mips_relax_frag PARAMS ((struct frag *, long)); #define md_undefined_symbol(name) (0) #define md_operand(x) +extern int mips_do_align PARAMS ((int, const char *, int, int)); +#define md_do_align(n,fill,len,max,l) if (mips_do_align (n,fill,len,max)) goto l + /* We permit PC relative difference expressions when generating embedded PIC code. */ #define DIFF_EXPR_OK |