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

Side by Side Diff: src/cmd/gc/builtin.c.boot

Issue 4264050: code review 4264050: gc: unsafe.Pointer is not a pointer (Closed)
Patch Set: diff -r c2fd8ff47c0c https://go.googlecode.com/hg Created 14 years 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:
View unified diff | Download patch
« no previous file with comments | « src/cmd/gc/align.c ('k') | src/cmd/gc/const.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 char *runtimeimport = 1 char *runtimeimport =
2 "package runtime\n" 2 "package runtime\n"
3 "func \"\".new (? int32) *any\n" 3 "func \"\".new (? int32) *any\n"
4 "func \"\".panicindex ()\n" 4 "func \"\".panicindex ()\n"
5 "func \"\".panicslice ()\n" 5 "func \"\".panicslice ()\n"
6 "func \"\".throwreturn ()\n" 6 "func \"\".throwreturn ()\n"
7 "func \"\".throwinit ()\n" 7 "func \"\".throwinit ()\n"
8 "func \"\".panic (? interface { })\n" 8 "func \"\".panic (? interface { })\n"
9 "func \"\".recover (? *int32) interface { }\n" 9 "func \"\".recover (? *int32) interface { }\n"
10 "func \"\".printbool (? bool)\n" 10 "func \"\".printbool (? bool)\n"
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "func \"\".uint64mod (? uint64, ? uint64) uint64\n" 89 "func \"\".uint64mod (? uint64, ? uint64) uint64\n"
90 "func \"\".float64toint64 (? float64) int64\n" 90 "func \"\".float64toint64 (? float64) int64\n"
91 "func \"\".float64touint64 (? float64) uint64\n" 91 "func \"\".float64touint64 (? float64) uint64\n"
92 "func \"\".int64tofloat64 (? int64) float64\n" 92 "func \"\".int64tofloat64 (? int64) float64\n"
93 "func \"\".uint64tofloat64 (? uint64) float64\n" 93 "func \"\".uint64tofloat64 (? uint64) float64\n"
94 "func \"\".complex128div (num complex128, den complex128) complex128\n" 94 "func \"\".complex128div (num complex128, den complex128) complex128\n"
95 "\n" 95 "\n"
96 "$$\n"; 96 "$$\n";
97 char *unsafeimport = 97 char *unsafeimport =
98 "package unsafe\n" 98 "package unsafe\n"
99 » "type \"\".Pointer *any\n" 99 » "type \"\".Pointer uintptr\n"
100 "func \"\".Offsetof (? any) int\n" 100 "func \"\".Offsetof (? any) int\n"
101 "func \"\".Sizeof (? any) int\n" 101 "func \"\".Sizeof (? any) int\n"
102 "func \"\".Alignof (? any) int\n" 102 "func \"\".Alignof (? any) int\n"
103 "func \"\".Typeof (i interface { }) interface { }\n" 103 "func \"\".Typeof (i interface { }) interface { }\n"
104 "func \"\".Reflect (i interface { }) (typ interface { }, addr \"\".Point er)\n" 104 "func \"\".Reflect (i interface { }) (typ interface { }, addr \"\".Point er)\n"
105 "func \"\".Unreflect (typ interface { }, addr \"\".Pointer) interface { }\n" 105 "func \"\".Unreflect (typ interface { }, addr \"\".Pointer) interface { }\n"
106 "func \"\".New (typ interface { }) \"\".Pointer\n" 106 "func \"\".New (typ interface { }) \"\".Pointer\n"
107 "func \"\".NewArray (typ interface { }, n int) \"\".Pointer\n" 107 "func \"\".NewArray (typ interface { }, n int) \"\".Pointer\n"
108 "\n" 108 "\n"
109 "$$\n"; 109 "$$\n";
OLDNEW
« no previous file with comments | « src/cmd/gc/align.c ('k') | src/cmd/gc/const.c » ('j') | no next file with comments »

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