aboutsummaryrefslogtreecommitdiff
path: root/gas/frags.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2012-06-30 00:27:31 +0000
committerAlan Modra <amodra@gmail.com>2012-06-30 00:27:31 +0000
commit08ea70204dd193ec8cd8a1e8926c485e56959152 (patch)
tree30aa9f2d6d6558c20e1927177498f4f5d6842c20 /gas/frags.c
parent4bec9bf157914ef952a5ddc30a5b52aa814dbcd9 (diff)
downloadgdb-08ea70204dd193ec8cd8a1e8926c485e56959152.zip
gdb-08ea70204dd193ec8cd8a1e8926c485e56959152.tar.gz
gdb-08ea70204dd193ec8cd8a1e8926c485e56959152.tar.bz2
* frags.h (frag_offset_fixed_p): Update prototype.
* frags.c (frag_offset_fixed_p): Change type of "offset" to offsetT. * expr.c (expr, resolve_expression): Likewise for frag_off var.
Diffstat (limited to 'gas/frags.c')
-rw-r--r--gas/frags.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/frags.c b/gas/frags.c
index fe3e78f..c6ac425 100644
--- a/gas/frags.c
+++ b/gas/frags.c
@@ -1,6 +1,6 @@
/* frags.c - manage frags -
Copyright 1987, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
- 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009
+ 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012
Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -394,10 +394,10 @@ frag_append_1_char (int datum)
not already accounted for in the frag FR_ADDRESS. */
bfd_boolean
-frag_offset_fixed_p (const fragS *frag1, const fragS *frag2, bfd_vma *offset)
+frag_offset_fixed_p (const fragS *frag1, const fragS *frag2, offsetT *offset)
{
const fragS *frag;
- bfd_vma off;
+ offsetT off;
/* Start with offset initialised to difference between the two frags.
Prior to assigning frag addresses this will be zero. */