Path: utzoo!utgpu!water!watmath!rbutterworth
From: rbutterworth@watmath.waterloo.edu (Ray Butterworth)
Newsgroups: comp.bugs.4bsd
Subject: cc: compiler error: register allocation error
Message-ID: <19605@watmath.waterloo.edu>
Date: 23 Jun 88 18:04:20 GMT
Distribution: comp
Organization: U of Waterloo, Ontario
Lines: 20


typedef struct {
   char name[11];
} Type1;

struct {
   int line;
   Type1 *first;
} *q;

extern Type1 sfunc();
extern Type1 *spfunc();

main()
{
    *(q->first = spfunc()) = sfunc();
}


line 15: compiler error: register allocation error