This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Call for testers for pch-branch


Geoffrey Keating <geoffk@apple.com> writes:

|> Does this patch work for you?
|> 
|> *** dwarf2out.c.~1.349.2.15.~   Mon Nov 11 14:14:54 2002
|> --- dwarf2out.c Tue Nov 26 16:11:58 2002
|> ***************
|> *** 5684,5691 ****
|>        case dw_val_class_flag:
|>          return v1->v.val_flag == v2->v.val_flag;
|>        case dw_val_class_str:
|> !       return !strcmp((const char *) HT_STR (&v1->v.val_str->id),
|> !                    (const char *) HT_STR (&v2->v.val_str->id));
|> 
|>        case dw_val_class_addr:
|>          r1 = v1->v.val_addr;
|> --- 5684,5690 ----
|>        case dw_val_class_flag:
|>          return v1->v.val_flag == v2->v.val_flag;
|>        case dw_val_class_str:
|> !       return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
|> 
|>        case dw_val_class_addr:
|>          r1 = v1->v.val_addr;
|> 

This gets me futher, but not far:

libbackend.a(dwarf2out.o): In function `AT_string_form':
/tmp/cvs/gcc-20021128/Build/gcc/../../gcc/dwarf2out.c:4703: undefined reference to `const_labelno'
/tmp/cvs/gcc-20021128/Build/gcc/../../gcc/dwarf2out.c:4704: undefined reference to `const_labelno'
/tmp/cvs/gcc-20021128/Build/gcc/../../gcc/dwarf2out.c:4704: undefined reference to `const_labelno'
collect2: ld returned 1 exit status

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux AG, Deutschherrnstr. 15-19, D-90429 Nürnberg
Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]