summary refs log tree commit diff stats
path: root/compiler/ccgexprs.nim
Commit message (Collapse)AuthorAgeFilesLines
* Replaced deprecated repeatStr() with repeat().Hans Raaf2015-03-041-1/+1
|
* makes Aporia build for 64bit archsAraq2015-03-031-46/+41
|
* Fix typosFederico Ceratto2015-02-151-1/+1
|
* fixes #2118Araq2015-02-131-7/+3
|
* tables work in 'const' sections; echo supports 'nil' strings; minor cleanupsAraq2015-02-091-3/+5
|
* compiler distinguishes between 2 different 'var' types for C++ interop; code ↵Araq2015-02-071-3/+6
| | | | cleanups
* lots of C++ codegen improvementsAraq2015-02-071-1/+3
|
* fixes stupid regressionAraq2015-02-041-1/+1
|
* C++ support: codegen generates C++'s references and avoids copiesAraq2015-02-041-7/+16
|
* fixes #2022Araq2015-01-311-2/+4
|
* fixes #2039Araq2015-01-311-3/+3
|
* Fixes #1642.Dominik Picheta2015-01-281-2/+6
|
* preparations for C++ template supportAraq2015-01-231-10/+13
|
* fixes #1833Araq2015-01-181-1/+2
|
* fixes #1915Araq2015-01-121-1/+3
|
* fixes #1181, fixes #1715Araq2014-12-161-2/+11
|
* fixes #1547Araq2014-11-271-1/+1
|
* fixes #837Araq2014-11-211-8/+24
|
* fixes #1053, fixes #924Araq2014-11-191-7/+9
|
* fixes #1274Araq2014-11-181-1/+1
|
* fixes #1548Araq2014-11-171-3/+4
|
* fixes #1181Araq2014-11-131-28/+32
|
* fixes #1593Araq2014-11-121-2/+12
|
* implemented mixed mode codegenAraq2014-10-031-19/+19
|
* implemented 'guard' annotationAraq2014-09-211-3/+1
|
* Nimrod renamed to NimAraq2014-08-281-4/+4
|
* fixes #1434Araq2014-08-141-1/+0
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-081-0/+1
|\
| * Also include string.h for strlen for C backenddef2014-08-081-1/+1
| |
| * Include string.h for strlen with cpp backenddef2014-08-071-0/+1
| |
* | 'parallel' statement works againAraq2014-08-081-1/+3
|/
* some bugfixes for 'deepCopy'Araq2014-08-061-5/+6
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-08-051-3/+3
|\ | | | | | | | | Conflicts: compiler/ccgexprs.nim
| * Fix #1392Flaviu Tamas2014-07-221-3/+3
| |
* | added debug output (but not active)Araq2014-08-051-0/+1
| |
* | progress on deepCopyAraq2014-08-011-7/+39
|/
* parseBiggestFloat is now builtinAraq2014-07-161-1/+2
|
* fixes #1275Araq2014-07-011-3/+4
|
* fixes #751Araq2014-07-011-2/+2
|
* Merge pull request #1281 from Araq/new_spawnAndreas Rumpf2014-06-161-1/+4
|\ | | | | New spawn
| * Merge branch 'new_spawn' of https://github.com/Araq/Nimrod into new_spawnAraq2014-06-061-1/+1
| |\
| | * Promises are now refsAraq2014-06-051-1/+1
| | |
| * | Merge branch 'new_spawn' of https://github.com/Araq/Nimrod into new_spawnAraq2014-06-011-1/+4
| |\|
| | * 'parallel' statement almost workingAraq2014-05-221-1/+1
| | |
| | * progress for the 'parallel' statementAraq2014-05-141-0/+3
| | |
* | | optimized method dispatchersAraq2014-06-121-4/+20
|/ /
* / Resolve type mismatches.EXetoC2014-05-131-1/+1
|/
* 2nd attempt to fix bootstrappingAraq2014-05-061-1/+1
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-04-201-0/+3
|\
| * Fixes #1005Dominik Picheta2014-04-151-0/+3
| |
f='#n81'>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