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

Delta Between Two Patch Sets: src/cmd/internal/rsc.io/arm/armasm/decode.go

Issue 153750044: code review 153750044: cmd/objdump: move armasm, x86asm into internal packages (Closed)
Left Patch Set: diff -r cd24f5ff3db869a41efbf3a83e9e3f55b61460b8 https://code.google.com/p/go/ Created 10 years, 5 months ago
Right Patch Set: diff -r f804c5bc096d3a87bba0dd7ed74aae850b93873e https://code.google.com/p/go/ Created 10 years, 5 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/internal/rsc.io/arm/armasm/Makefile ('k') | src/cmd/internal/rsc.io/arm/armasm/decode_test.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(Both sides are equal)
1 // Copyright 2014 The Go Authors. All rights reserved. 1 // Copyright 2014 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package armasm 5 package armasm
6 6
7 import ( 7 import (
8 "encoding/binary" 8 "encoding/binary"
9 "fmt" 9 "fmt"
10 ) 10 )
(...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after
558 count = 32 558 count = 32
559 } 559 }
560 case RotateRight: 560 case RotateRight:
561 if count == 0 { 561 if count == 0 {
562 typ = RotateRightExt 562 typ = RotateRightExt
563 count = 1 563 count = 1
564 } 564 }
565 } 565 }
566 return typ, uint8(count) 566 return typ, uint8(count)
567 } 567 }
LEFTRIGHT

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