This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
-fno-unit-at-a-time broken
- From: Richard Henderson <rth at redhat dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Mon, 25 Apr 2005 17:34:40 -0700
- Subject: -fno-unit-at-a-time broken
Some recent change has broken -fno-unit-at-a-time on mainline.
Which, I'll remind folks, is *still* the default at -O1.
Test case:
static inline void foo(void) { }
void (*bar) (void);
void baz(void) { bar = foo; }
We're no longer emitting foo out of line.
r~