blob: ffe0f2edb4572c77d71e4c2dfd2839ed5118f013 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
From 4f3cc3ed446170a161cf8ecb644a740ac233b005 Mon Sep 17 00:00:00 2001
From: Alan Justino <alan.justino@yahoo.com.br>
Date: Wed, 7 Mar 2018 19:30:45 -0300
Subject: [PATCH] Fix int underflow on 32bit CPUs
---
tools/pkgc.go | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/tools/pkgc.go b/tools/pkgc.go
index e04017c7..93a6fe7d 100644
--- a/tools/pkgc.go
+++ b/tools/pkgc.go
@@ -75,6 +75,16 @@ func getConst(name string, v constant.Value) string {
} else {
format = "float64(%s)"
}
+ } else {
+ if i, exact := constant.Int64Val(v); exact {
+ if i > math.MinInt8 {
+ format = "int(%s)"
+ } else if i > math.MinInt32 {
+ format = "int32(%s)"
+ } else {
+ format = "int64(%s)"
+ }
+ }
}
case constant.Float:
format = "float64(%s)"
|