Skip to content

Commit cdaf8b6

Browse files
committed
cmd/internal/obj/riscv: gofmt
gofmt the changes from CL 226397 Change-Id: Ibb252ddb8164573af15fc882ac48b5c01dd87cf3 Reviewed-on: https://go-review.googlesource.com/c/go/+/228059 Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Matt Layher <[email protected]>
1 parent f5439d4 commit cdaf8b6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/cmd/internal/obj/riscv/testdata/testbranch/branch_test.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ func testBLTZ(a int64) (r bool)
2222
func testBNEZ(a int64) (r bool)
2323

2424
func TestBranchCondition(t *testing.T) {
25-
tests := []struct{
26-
ins string
27-
a int64
28-
b int64
29-
fn func(a, b int64) bool
25+
tests := []struct {
26+
ins string
27+
a int64
28+
b int64
29+
fn func(a, b int64) bool
3030
want bool
3131
}{
3232
{"BGT", 0, 1, testBGT, true},
@@ -59,10 +59,10 @@ func TestBranchCondition(t *testing.T) {
5959
}
6060

6161
func TestBranchZero(t *testing.T) {
62-
tests := []struct{
63-
ins string
64-
a int64
65-
fn func(a int64) bool
62+
tests := []struct {
63+
ins string
64+
a int64
65+
fn func(a int64) bool
6666
want bool
6767
}{
6868
{"BEQZ", -1, testBEQZ, false},

0 commit comments

Comments
 (0)