summary refs log tree commit diff stats
path: root/compiler/ccgstmts.nim
Commit message (Expand)AuthorAgeFilesLines
* fixes #15026 [backport] (#15040)Andreas Rumpf2020-07-221-1/+1
* fixes #14925 (#14947)Andreas Rumpf2020-07-091-0/+4
* scoped memory management (#14790)Andreas Rumpf2020-07-041-8/+16
* fixes #14240 [backport:1.2] (#14757)Andreas Rumpf2020-06-221-8/+9
* fix #14369 (#14386)cooldome2020-05-181-0/+1
* fixes #13998 [backport:1.2]Andreas Rumpf2020-05-131-1/+1
* fix for asm statement; refs #12650Araq2020-04-201-1/+1
* Implements RFCs #209 (#13995)cooldome2020-04-161-24/+7
* fixes #13782 (#13834)Andreas Rumpf2020-04-011-0/+3
* Attempt to finish off araq cpp exceptions (#13695)cooldome2020-03-191-8/+173
* rewritten goto based exception handling; much cleaner implementation;… (#13...Andreas Rumpf2020-03-171-22/+6
* catchable defects (#13626)Andreas Rumpf2020-03-121-27/+36
* fixes #13599 (#13614)Andreas Rumpf2020-03-091-1/+1
* fix #8312 --hints:off and --warnings:off now honored everywhere (#13489)Timothee Cour2020-02-261-1/+1
* Fixes #13186 (#13188)slangmgh2020-01-191-2/+4
* make case-object transitions explicit, make unknownLineInfo a const, replace ...Jasper Jenkins2020-01-171-1/+1
* fixes #12961 (#13019)Andreas Rumpf2020-01-031-9/+12
* --exception:goto switch for deterministic exception handling (#12977)Andreas Rumpf2020-01-011-24/+157
* fixes #12826Araq2019-12-241-2/+2
* Fix #12785 (#12943)RSDuck2019-12-211-0/+4
* ARC related bugfixes and refactorings (#12781)Andreas Rumpf2019-12-051-3/+10
* better support for PROGMEM like annotations for lets/vars; fixes #12216 (#12799)Andreas Rumpf2019-12-051-12/+26
* Cosmetic compiler cleanup (#12718)Clyybber2019-11-281-174/+165
* --gc:destructors now means Nim uses pure refcounting (#12557)Andreas Rumpf2019-10-301-1/+1
* refactoring: --newruntime consists of 3 different switchesAraq2019-10-201-4/+4
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-1/+1
* Small ast.nim cleanup (#12156)Clyybber2019-09-091-20/+20
* allows access to .compileTime vars at runtime (#12128)Andreas Rumpf2019-09-051-11/+12
* Remove ENDB (#12095)Clyybber2019-08-311-26/+0
* only store finally block in exception stack (#11876)Jacek Sieka2019-08-281-9/+11
* fixes #11891Andreas Rumpf2019-08-101-1/+3
* int128 on firstOrd, lastOrd and lengthOrd (#11701)Arne Döring2019-08-071-5/+5
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-1/+1
* msgs, ccgstmts: fixes #11572 (#11621)alaviss2019-06-301-1/+1
* Warn about object case transitions at compile time (#11378)genotrance2019-06-021-0/+1
* fixes #11205Araq2019-05-281-1/+26
* Small cleanup (#11185)Andreas Rumpf2019-05-081-10/+10
|\
| * Replace countup(x, y) with x .. yClyybber2019-05-071-8/+8
| * Replace countup(x, y-1) with x ..< yClyybber2019-05-071-2/+2
* | no 'defers' in my backendAraq2019-05-081-16/+15
* | cleanup (#11192)Jasper Jenkins2019-05-071-2/+0
|/
* Fixes for ptr array deref codegen (#11191)Jasper Jenkins2019-05-071-37/+12
* newruntime: make 'discard new RootObj' workAraq2019-04-261-2/+3
* fixes #11082Andreas Rumpf2019-04-231-3/+5
* fewer ropes (#11037)Arne Döring2019-04-191-2/+2
* Less ropes (#10979)Arne Döring2019-04-111-52/+53
* newruntime: raising an exception works but currently leaks memory because cur...Araq2019-04-101-0/+2
* don't emit an implicit try finally when in system.nim in order to prevent end...Araq2019-04-091-1/+2
* Add OpenMP overload with stepping (#10891)Mamy Ratsimbazafy2019-03-221-5/+15
* --newruntime: progressAndreas Rumpf2019-03-141-0/+1
t; 2018-10-17 07:08:47 -0700 4709' href='/akkartik/mu/commit/html/subx/056write.subx.html?h=hlt&id=104e521c04d1a0cad9c68fb11e250e12ad8917ef'>104e521c ^
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376