diff options
author | Sean Eric Fagan <sef@cygnus> | 1992-04-07 22:20:00 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1992-04-07 22:20:00 +0000 |
commit | 86582e8d6c66dbb167176a37834e709b13a46120 (patch) | |
tree | ffca8807c620e8fdbdf6c01c529850e46a740725 | |
parent | 3876b4c55d28ed797df52cd983bfb6aaed59c3d4 (diff) | |
download | gdb-86582e8d6c66dbb167176a37834e709b13a46120.zip gdb-86582e8d6c66dbb167176a37834e709b13a46120.tar.gz gdb-86582e8d6c66dbb167176a37834e709b13a46120.tar.bz2 |
The Apollo compiler doesn't like assigning variables to enum's. So,
add a new enum to the class, with a value of 0.
-rw-r--r-- | gas/config/tc-m68kmote.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-m68kmote.c b/gas/config/tc-m68kmote.c index 4f8b213..dd18c7e 100644 --- a/gas/config/tc-m68kmote.c +++ b/gas/config/tc-m68kmote.c @@ -422,7 +422,7 @@ static void s_proc(); #endif /* not __STDC__ */ -static enum m68k_architecture current_architecture = 0; +static enum m68k_architecture current_architecture = _m68k_undef; /* BCC68000 is for patching in an extra jmp instruction for long offsets on the 68000. The 68000 doesn't support long branches with branchs */ |