summaryrefslogtreecommitdiffstats
path: root/gas/config/tc-i386.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2000-12-03 06:49:23 +0000
committerKazu Hirata <kazu@codesourcery.com>2000-12-03 06:49:23 +0000
commitbc805888417f16602aeb4bfd3f6e33d32ffcae24 (patch)
tree27342f553710887323bd2dc293212278a1b4f01a /gas/config/tc-i386.c
parentcdc2a5c39552f51f37b225a06f2ab6e974aab967 (diff)
downloadppe42-binutils-bc805888417f16602aeb4bfd3f6e33d32ffcae24.tar.gz
ppe42-binutils-bc805888417f16602aeb4bfd3f6e33d32ffcae24.zip
2000-12-03 Kazu Hirata <kazu@hxi.com>
* tc-a29k.c: Fix formatting. * tc-alpha.c: Likewise. * tc-arm.c: Likewise. * tc-cris.c: Likewise. * tc-hppa.c: Likewise. * tc-i370.c: Likewise. * tc-i386.c: Likewise. * tc-i860.c: Likewise. * tc-i960.c: Likewise. * tc-ia64.c: Likewise. * tc-m68hc11.c: Likewise. * tc-m68k.c: Likewise. * tc-m88k.c: Likewise. * tc-pj.c: Likewise. * tc-ppc.c: Likewise. * tc-sh.c: Likewise. * tc-sparc.c: Likewise. * tc-tahoe.c: Likewise. * tc-vax.c: Likewise.
Diffstat (limited to 'gas/config/tc-i386.c')
-rw-r--r--gas/config/tc-i386.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c
index ed5c956888..5cf87bd0e2 100644
--- a/gas/config/tc-i386.c
+++ b/gas/config/tc-i386.c
@@ -270,7 +270,7 @@ static unsigned int cpu_arch_flags = 0;
#endif
#define ENCODE_RELAX_STATE(type,size) \
- ((relax_substateT)((type<<2) | (size)))
+ ((relax_substateT) ((type<<2) | (size)))
#define SIZE_FROM_RELAX_STATE(s) \
( (((s) & 0x3) == BIG ? 4 : (((s) & 0x3) == BIG16 ? 2 : 1)) )
@@ -4843,7 +4843,7 @@ intel_e11 ()
save_str = (char *)malloc (strlen (cur_token.str) + 1);
if (save_str == NULL)
- abort();
+ abort ();
strcpy (save_str, cur_token.str);
/* Get the next token to check for register scaling. */
@@ -4961,7 +4961,7 @@ intel_get_token ()
string. */
new_token.str = (char *)malloc (strlen (intel_parser.op_string) + 1);
if (new_token.str == NULL)
- abort();
+ abort ();
new_token.str[0] = '\0';
if (strchr ("0123456789", *intel_parser.op_string))
OpenPOWER on IntegriCloud