Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(104)

Delta Between Two Patch Sets: src/cmd/5g/gsubr.c

Issue 160200044: [dev.power64] code review 160200044: build: merge default into dev.power64 (Closed)
Left Patch Set: Created 10 years, 4 months ago
Right Patch Set: diff -r be0c14f62257b42485019e9e1db23cf40d2e249f https://code.google.com/p/go Created 10 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/5g/cgen.c ('k') | src/cmd/5g/reg.c » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Derived from Inferno utils/5c/txt.c 1 // Derived from Inferno utils/5c/txt.c
2 // http://code.google.com/p/inferno-os/source/browse/utils/5c/txt.c 2 // http://code.google.com/p/inferno-os/source/browse/utils/5c/txt.c
3 // 3 //
4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved. 4 // Copyright © 1994-1999 Lucent Technologies Inc. All rights reserved.
5 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net) 5 // Portions Copyright © 1995-1997 C H Forsyth (forsyth@terzarima.net)
6 // Portions Copyright © 1997-1999 Vita Nuova Limited 6 // Portions Copyright © 1997-1999 Vita Nuova Limited
7 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov a.com) 7 // Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuov a.com)
8 // Portions Copyright © 2004,2006 Bruce Ellis 8 // Portions Copyright © 2004,2006 Bruce Ellis
9 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net) 9 // Portions Copyright © 2005-2007 C H Forsyth (forsyth@terzarima.net)
10 // Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others 10 // Revisions Copyright © 2000-2007 Lucent Technologies Inc. and others
(...skipping 1581 matching lines...) Expand 10 before | Expand all | Expand 10 after
1592 a = AMOVD; 1592 a = AMOVD;
1593 break; 1593 break;
1594 1594
1595 case CASE(OADD, TINT8): 1595 case CASE(OADD, TINT8):
1596 case CASE(OADD, TUINT8): 1596 case CASE(OADD, TUINT8):
1597 case CASE(OADD, TINT16): 1597 case CASE(OADD, TINT16):
1598 case CASE(OADD, TUINT16): 1598 case CASE(OADD, TUINT16):
1599 case CASE(OADD, TINT32): 1599 case CASE(OADD, TINT32):
1600 case CASE(OADD, TUINT32): 1600 case CASE(OADD, TUINT32):
1601 case CASE(OADD, TPTR32): 1601 case CASE(OADD, TPTR32):
1602 case CASE(OADDPTR, TPTR32):
1603 a = AADD; 1602 a = AADD;
1604 break; 1603 break;
1605 1604
1606 case CASE(OADD, TFLOAT32): 1605 case CASE(OADD, TFLOAT32):
1607 a = AADDF; 1606 a = AADDF;
1608 break; 1607 break;
1609 1608
1610 case CASE(OADD, TFLOAT64): 1609 case CASE(OADD, TFLOAT64):
1611 a = AADDD; 1610 a = AADDD;
1612 break; 1611 break;
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
2084 naddr(&n2, a, 1); 2083 naddr(&n2, a, 1);
2085 goto yes; 2084 goto yes;
2086 2085
2087 yes: 2086 yes:
2088 return 1; 2087 return 1;
2089 2088
2090 no: 2089 no:
2091 sudoclean(); 2090 sudoclean();
2092 return 0; 2091 return 0;
2093 } 2092 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b