diff options
author | Nick Clifton <nickc@redhat.com> | 2000-12-12 19:29:24 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-12-12 19:29:24 +0000 |
commit | e972090a0404a663fe10db32ba50dbdc841e7dc1 (patch) | |
tree | 7a5fd1d9741a95328e25dfec018724a83ca6619a /gas/cgen.h | |
parent | d4c0c039516e9a04d7f55e971fd0b8e75cbcb716 (diff) | |
download | fsf-binutils-gdb-e972090a0404a663fe10db32ba50dbdc841e7dc1.zip fsf-binutils-gdb-e972090a0404a663fe10db32ba50dbdc841e7dc1.tar.gz fsf-binutils-gdb-e972090a0404a663fe10db32ba50dbdc841e7dc1.tar.bz2 |
Fix formatting
Diffstat (limited to 'gas/cgen.h')
-rw-r--r-- | gas/cgen.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -31,15 +31,16 @@ extern CGEN_CPU_DESC gas_cgen_cpu_desc; #endif /* Struct defining result of gas_cgen_finish_insn. */ -typedef struct { +typedef struct +{ /* frag containing the insn */ - fragS *frag; + fragS * frag; /* Address of insn in frag. */ - char *addr; + char * addr; /* Number of fixups this insn has. */ int num_fixups; /* Array of fixups. */ - fixS *fixups[GAS_CGEN_MAX_FIXUPS]; + fixS * fixups[GAS_CGEN_MAX_FIXUPS]; } finished_insnS; /* Callback for operand parsing. |