From: utzoo!decvax!ucbvax!mhtsa!eagle!mit-vax!mp Newsgroups: net.unix-wizards Title: pcc bug Article-I.D.: mit-vax.152 Posted: Sun Jul 11 18:20:53 1982 Received: Mon Jul 12 01:36:19 1982 The following program causes every implementation of the portable C compiler that I've seen (I tried it at the vendors' exhibits at USENIX) blow up. The compiler generates a couple thousand move instructions and then decides that it's looping. int a(); int (*buf)() = (int (*)()) ((int)a | 0x80000000); main() {} a() {}