diff options
| author | Russ Cox <rsc@golang.org> | 2015-02-17 22:13:49 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2015-02-20 00:17:03 +0000 |
| commit | dc7b54bed280f9258c553772fbd62e5b075ccff7 (patch) | |
| tree | 27c9f8f470b231b643f7818522854f18a0ea586f /src/cmd/internal/obj/link.go | |
| parent | 786825c5e8e4b93bf7c4dbe5e5a80c3fe0cb39ed (diff) | |
| download | go-dc7b54bed280f9258c553772fbd62e5b075ccff7.tar.xz | |
[dev.cc] cmd/internal/obj, cmd/internal/gc, new6g: reconvert
Reconvert using rsc.io/c2go rev 27b3f59.
Changes to converter:
- fatal does not return, so no fallthrough after fatal in switch
- many more function results and variables identified as bool
- simplification of negated boolean expressions
Change-Id: I3bc67da5e46cb7ee613e230cf7e9533036cc870b
Reviewed-on: https://go-review.googlesource.com/5171
Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com>
Diffstat (limited to 'src/cmd/internal/obj/link.go')
| -rw-r--r-- | src/cmd/internal/obj/link.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/cmd/internal/obj/link.go b/src/cmd/internal/obj/link.go index d256fbbb18..7daf12e8f2 100644 --- a/src/cmd/internal/obj/link.go +++ b/src/cmd/internal/obj/link.go @@ -280,14 +280,14 @@ type Pcdata struct { } type Pciter struct { - D Pcdata - P []byte - Pc uint32 - Nextpc uint32 - Pcscale uint32 - Value int32 - Start int - Done int + d Pcdata + p []byte + pc uint32 + nextpc uint32 + pcscale uint32 + value int32 + start int + done int } // An Addr is an argument to an instruction. |
