~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/cmd/gc/builtin.c.boot

  • Committer: Bazaar Package Importer
  • Author(s): Ondřej Surý
  • Date: 2011-08-03 17:04:59 UTC
  • mfrom: (14.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110803170459-wzd99m3567y80ila
Tags: 1:59-1
* Imported Upstream version 59
* Refresh patches to a new release
* Fix FTBFS on ARM (Closes: #634270)
* Update version.bash to work with Debian packaging and not hg
  repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
        "func \"\".panicslice ()\n"
7
7
        "func \"\".throwreturn ()\n"
8
8
        "func \"\".throwinit ()\n"
 
9
        "func \"\".panicwrap (? string, ? string, ? string)\n"
9
10
        "func \"\".panic (? interface { })\n"
10
11
        "func \"\".recover (? *int32) interface { }\n"
11
12
        "func \"\".printbool (? bool)\n"
22
23
        "func \"\".printsp ()\n"
23
24
        "func \"\".goprintf ()\n"
24
25
        "func \"\".concatstring ()\n"
 
26
        "func \"\".append ()\n"
25
27
        "func \"\".appendslice (typ *uint8, x any, y []any) any\n"
26
28
        "func \"\".cmpstring (? string, ? string) int\n"
27
29
        "func \"\".slicestring (? string, ? int, ? int) string\n"
81
83
        "func \"\".selectgo (sel *uint8)\n"
82
84
        "func \"\".block ()\n"
83
85
        "func \"\".makeslice (typ *uint8, nel int64, cap int64) []any\n"
84
 
        "func \"\".growslice (typ *uint8, old []any, cap int64) []any\n"
 
86
        "func \"\".growslice (typ *uint8, old []any, n int64) []any\n"
85
87
        "func \"\".sliceslice1 (old []any, lb uint64, width uint64) []any\n"
86
88
        "func \"\".sliceslice (old []any, lb uint64, hb uint64, width uint64) []any\n"
87
89
        "func \"\".slicearray (old *any, nel uint64, lb uint64, hb uint64, width uint64) []any\n"
101
103
        "package unsafe\n"
102
104
        "import runtime \"runtime\"\n"
103
105
        "type \"\".Pointer uintptr\n"
104
 
        "func \"\".Offsetof (? any) int\n"
105
 
        "func \"\".Sizeof (? any) int\n"
106
 
        "func \"\".Alignof (? any) int\n"
 
106
        "func \"\".Offsetof (? any) uintptr\n"
 
107
        "func \"\".Sizeof (? any) uintptr\n"
 
108
        "func \"\".Alignof (? any) uintptr\n"
107
109
        "func \"\".Typeof (i interface { }) interface { }\n"
108
110
        "func \"\".Reflect (i interface { }) (typ interface { }, addr \"\".Pointer)\n"
109
111
        "func \"\".Unreflect (typ interface { }, addr \"\".Pointer) interface { }\n"