diff options
| author | Russ Cox <rsc@golang.org> | 2009-09-18 12:56:18 -0700 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2009-09-18 12:56:18 -0700 |
| commit | 2e5a588718ed741112a5a8c04bbf1d53e417fbda (patch) | |
| tree | 203ffcb56f317df1a362b0bdcbacc51075455006 /src/pkg/debug | |
| parent | 2c7ec3d8617baab14a76d471fb954d6b2f72695e (diff) | |
| download | go-2e5a588718ed741112a5a8c04bbf1d53e417fbda.tar.xz | |
fix build again; this time for sure. sigh
TBR=r
OCL=34803
CL=34803
Diffstat (limited to 'src/pkg/debug')
| -rw-r--r-- | src/pkg/debug/dwarf/type_test.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pkg/debug/dwarf/type_test.go b/src/pkg/debug/dwarf/type_test.go index 0534518cc1..d3aa6aa632 100644 --- a/src/pkg/debug/dwarf/type_test.go +++ b/src/pkg/debug/dwarf/type_test.go @@ -19,9 +19,9 @@ var typedefTests = map[string]string { "t_func_int_of_float_double": "func(float, double) int", "t_ptr_func_int_of_float_double": "*func(float, double) int", "t_func_ptr_int_of_char_schar_uchar": "func(char, signed char, unsigned char) *int", - "t_func_void_of_char": "func(char)", - "t_func_void_of_void": "func()", - "t_func_void_of_ptr_char_dots": "func(*char, ...)", + "t_func_void_of_char": "func(char) void", + "t_func_void_of_void": "func() void", + "t_func_void_of_ptr_char_dots": "func(*char, ...) void", "t_my_struct": "struct my_struct {vi volatile int@0; x char@4 : 1@7; y int@4 : 4@27; array [40]long long int@8}", "t_my_union": "union my_union {vi volatile int@0; x char@0 : 1@7; y int@0 : 4@28; array [40]long long int@0}", "t_my_enum": "enum my_enum {e1=1; e2=2; e3=-5; e4=1000000000000000}", |
