mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
cc7fcc1ae7
problem was not observed with the gcc in -stable. The apparent bug results in an endless loop if a certain routine in lstream.c is inline'd.
12 lines
311 B
Plaintext
12 lines
311 B
Plaintext
--- src/lstream.c.orig Sat Jun 29 18:17:20 2002
|
|
+++ src/lstream.c Sat Jun 29 18:14:06 2002
|
|
@@ -181,7 +181,7 @@
|
|
}
|
|
}
|
|
|
|
-inline static size_t
|
|
+/*inline*/ static size_t
|
|
aligned_sizeof_lstream (size_t lstream_type_specific_size)
|
|
{
|
|
return ALIGN_SIZE (offsetof (Lstream, data) + lstream_type_specific_size,
|