From def2e0dd82c4b17f3e9a07f7fd130a42c5789f65 Mon Sep 17 00:00:00 2001 From: Thiemo Seufer Date: Thu, 30 May 2002 21:06:14 +0000 Subject: * config/tc-mips.c (mips_gprel_offset): New variable. (s_gpvalue): Use it. --- gas/config/tc-mips.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gas/config/tc-mips.c') diff --git a/gas/config/tc-mips.c b/gas/config/tc-mips.c index 89a5931..0e683a6 100644 --- a/gas/config/tc-mips.c +++ b/gas/config/tc-mips.c @@ -423,6 +423,7 @@ static offsetT mips_cprestore_offset = -1; static offsetT mips_cpreturn_offset = -1; static int mips_cpreturn_register = -1; static int mips_gp_register = GP; +static int mips_gprel_offset = 0; /* Whether mips_cprestore_offset has been set in the current function (or whether it has already been warned about, if not). */ @@ -11786,7 +11787,7 @@ s_gpvalue (ignore) return; } - mips_cpreturn_offset = get_absolute_expression (); + mips_gprel_offset = get_absolute_expression (); demand_empty_rest_of_line (); } -- cgit v1.1