From e2d61622eb61b451cb2cc72684154fafa1977eef Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 4 Nov 2019 12:38:48 +0100 Subject: sys/linux: improve CAN descriptions --- pkg/compiler/types.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pkg/compiler') diff --git a/pkg/compiler/types.go b/pkg/compiler/types.go index 903c0957e..2858f9fb2 100644 --- a/pkg/compiler/types.go +++ b/pkg/compiler/types.go @@ -100,8 +100,7 @@ var typeInt = &typeDesc{ maxUInt := uint64(1< 1 && begin == 0 && int64(end) == -1 { - // intN[0:-1, align] is a special value for 'all possible values', - // but aligned. + // intN[0:-1, align] is a special value for 'all possible values', but aligned. end = maxUInt } else if end-begin > 1<<64-1<<32 { comp.error(args[0].Pos, "bad int range [%v:%v]", begin, end) -- cgit mrf-deployment