GCC Bugzilla – Attachment 8326 Details for
Bug 20282
[4.0/4.1 Regression] gcc4 can not bootstrap itself anymore
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch I'm testing
PR20305 (text/plain), 893 bytes, created by
Jakub Jelinek
on 2005-03-04 09:07:01 UTC
(
hide
)
Description:
Patch I'm testing
Filename:
MIME Type:
Creator:
Jakub Jelinek
Created:
2005-03-04 09:07:01 UTC
Size:
893 bytes
patch
obsolete
>2005-03-04 Jakub Jelinek <jakub@redhat.com> > > PR bootstrap/20282 > PR bootstrap/20305 > * macro.c (replace_args, cpp_get_token): Copy whole > cpp_token_u instead of just cpp_string field from it. > >--- libcpp/macro.c.jj 2005-02-16 09:24:29.000000000 +0100 >+++ libcpp/macro.c 2005-03-04 10:01:32.059056781 +0100 >@@ -886,7 +886,7 @@ replace_args (cpp_reader *pfile, cpp_has > { > cpp_token *token = _cpp_temp_token (pfile); > token->type = (*paste_flag)->type; >- token->val.str = (*paste_flag)->val.str; >+ token->val = (*paste_flag)->val; > if (src->flags & PASTE_LEFT) > token->flags = (*paste_flag)->flags | PASTE_LEFT; > else >@@ -1120,7 +1120,7 @@ cpp_get_token (cpp_reader *pfile) > cpp_token *t = _cpp_temp_token (pfile); > t->type = result->type; > t->flags = result->flags | NO_EXPAND; >- t->val.str = result->val.str; >+ t->val = result->val; > result = t; > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 20282
:
8323
| 8326