summaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2008-09-30 04:44:29 +0000
committerAlan Modra <amodra@bigpond.net.au>2008-09-30 04:44:29 +0000
commitaebfc1dcf18c67f2cf805b49851672af545d3ccc (patch)
tree10b685f89a36cdc313b864e899e62de39c18a652 /gas
parentc94748f87fad04e8297fdf8c29981e789268e3e8 (diff)
downloadbinutils-redhat-aebfc1dcf18c67f2cf805b49851672af545d3ccc.tar.gz
* dw2gencfi.c (output_cfi_insn): Fix typo in invocation of
tc_cfi_emit_pcrel_expr macro.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog5
-rw-r--r--gas/dw2gencfi.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 66b30ada1f..7ed17f4b21 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,8 @@
+2008-09-29 Nick Clifton <nickc@redhat.com>
+
+ * dw2gencfi.c (output_cfi_insn): Fix typo in invocation of
+ tc_cfi_emit_pcrel_expr macro.
+
2008-09-29 Peter O'Gorman <pogma@thewrittenword.com>
Steve Ellcey <sje@cup.hp.com>
diff --git a/gas/dw2gencfi.c b/gas/dw2gencfi.c
index 3cb5dffb10..12a656fe93 100644
--- a/gas/dw2gencfi.c
+++ b/gas/dw2gencfi.c
@@ -1152,7 +1152,7 @@ output_cfi_insn (struct cfi_insn_data *insn)
insn->u.ea.exp.X_op = O_subtract;
insn->u.ea.exp.X_op_symbol = symbol_temp_new_now ();
#elif defined (tc_cfi_emit_pcrel_expr)
- tc_cfi_emit_pcrel_expr (&insn.u.ea.exp, encoding_size);
+ tc_cfi_emit_pcrel_expr (&insn->u.ea.exp, encoding_size);
break;
#else
abort ();