* dw2gencfi.c (output_cfi_insn): Fix typo in invocation of
tc_cfi_emit_pcrel_expr macro.
This commit is contained in:
parent
2254aa74ee
commit
c0cf08ad1b
2 changed files with 6 additions and 1 deletions
|
@ -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>
|
||||
|
||||
|
|
|
@ -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 ();
|
||||
|
|
Loading…
Reference in a new issue