summary refs log tree commit diff stats
path: root/tests/arithm
Commit message (Expand)AuthorAgeFilesLines
* JS: fix div uint64 no truncation (#16899)flywind2021-02-151-0/+19
* use typeof instead type (#16962)flywind2021-02-081-2/+2
* fix operators containing percent for VM usage (#13536)Arne Döring2020-03-111-0/+18
* ungeneric unsigned ops (#12230)Jasper Jenkins2019-10-111-0/+22
* Merge branch 'devel' into uint-range-checksAraq2019-09-021-1/+1
|\
| * Fix int literals and range interaction (#11197)Oscar Nihlgård2019-08-311-1/+1
* | squashed and merged with develArne Döring2019-08-211-0/+1
|/
* int128 on firstOrd, lastOrd and lengthOrd (#11701)Arne Döring2019-08-071-33/+6
* right shift is now by default sign preserving (#11322)Arne Döring2019-05-291-4/+4
* Merge tests into a larger file (part 1 of ∞) (#9318)Miran2018-10-127-240/+173
* Narrowing casts are applied after every op if needed (#8918)LemonBoy2018-09-081-4/+39
* Constant folding for integer casts (#8095)LemonBoy2018-08-311-0/+60
* fixes #6255, add `system.ashr` arithmetic right shift (#8547)andri lim2018-08-071-0/+46
* Fix constant folding for shl/notLemonBoy2018-06-192-0/+92
* closes #5854Andreas Rumpf2017-09-151-0/+13
* Removed platform-specific arithm test cases (#6189)Fredrik Høisæther Rasch2017-08-061-11/+11
* fix logical right shift in VM. (#5916)Parashurama2017-06-051-0/+2
* fix right shift c codegen bug. (#5919)Parashurama2017-05-311-0/+18
* fixes #5216Araq2017-01-271-0/+20
10e39 ^
ac07e589 ^
ce2c1efc ^
79328f9a ^















ce2c1efc ^
79328f9a ^















6e181e7f ^
79328f9a ^
27ef047a ^






e99038ea ^



























ce2c1efc ^
e99038ea ^






ce2c1efc ^
e99038ea ^






ce2c1efc ^
e99038ea ^

52daf072 ^
e99038ea ^



ce2c1efc ^
e99038ea ^






ce2c1efc ^
e99038ea ^













ce2c1efc ^
e99038ea ^























27ef047a ^
e99038ea ^
79328f9a ^



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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173