GCC with patches for OS216
Revisión | 75f71db751a8ffb3619cfa8f24013e3a8ce8d506 (tree) |
---|---|
Tiempo | 1998-03-11 22:23:35 |
Autor | Jeffrey A Law <law@cygn...> |
Commiter | Jeff Law |
@@ -1,3 +1,7 @@ | ||
1 | +Wed Mar 11 14:26:52 1998 Jeffrey A Law (law@cygnus.com) | |
2 | + | |
3 | + * rtlanal.c (optimize): Declare. | |
4 | + | |
1 | 5 | Sun Mar 8 11:16:23 1998 Jeffrey A Law (law@cygnus.com) |
2 | 6 | |
3 | 7 | * emit-rtl.c (gen_lowpart_common): Handle more case where converting |
@@ -1,5 +1,5 @@ | ||
1 | 1 | /* Analyze RTL for C-Compiler |
2 | - Copyright (C) 1987, 88, 9-5, 1996 Free Software Foundation, Inc. | |
2 | + Copyright (C) 1987, 88, 9-6, 1998 Free Software Foundation, Inc. | |
3 | 3 | |
4 | 4 | This file is part of GNU CC. |
5 | 5 |
@@ -22,6 +22,8 @@ Boston, MA 02111-1307, USA. */ | ||
22 | 22 | #include "config.h" |
23 | 23 | #include "rtl.h" |
24 | 24 | |
25 | +extern int optimize; | |
26 | + | |
25 | 27 | void note_stores (); |
26 | 28 | int reg_set_p (); |
27 | 29 |