From c0cf08ad1bcfa8d6bdd2ac24dd71fd1f1e72276f Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 30 Sep 2008 04:44:29 +0000 Subject: [PATCH] * dw2gencfi.c (output_cfi_insn): Fix typo in invocation of tc_cfi_emit_pcrel_expr macro. --- gas/ChangeLog | 5 +++++ gas/dw2gencfi.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * dw2gencfi.c (output_cfi_insn): Fix typo in invocation of + tc_cfi_emit_pcrel_expr macro. + 2008-09-29 Peter O'Gorman Steve Ellcey 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 (); -- 2.34.1