summary refs log tree commit diff stats
path: root/compiler/extccomp.nim
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/extccomp.nim')
-rw-r--r--compiler/extccomp.nim8
1 files changed, 4 insertions, 4 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim
index 75cb1ef27..186a3884d 100644
--- a/compiler/extccomp.nim
+++ b/compiler/extccomp.nim
@@ -26,8 +26,8 @@ type
     hasAssume,                # CC has __assume (Visual C extension)
     hasGcGuard,               # CC supports GC_GUARD to keep stack roots
     hasGnuAsm,                # CC's asm uses the absurd GNU assembler syntax
-    hasNakedDeclspec,         # CC has __declspec(naked)
-    hasNakedAttribute         # CC has __attribute__((naked))
+    hasDeclspec,              # CC has __declspec(X)
+    hasAttribute,             # CC has __attribute__((X))
   TInfoCCProps* = set[TInfoCCProp]
   TInfoCC* = tuple[
     name: string,        # the short name of the compiler
@@ -85,7 +85,7 @@ compiler gcc:
     structStmtFmt: "$1 $3 $2 ", # struct|union [packed] $name
     packedPragma: "__attribute__((__packed__))",
     props: {hasSwitchRange, hasComputedGoto, hasCpp, hasGcGuard, hasGnuAsm,
-            hasNakedAttribute})
+            hasAttribute})
 
 # LLVM Frontend for GCC/G++
 compiler llvmGcc:
@@ -127,7 +127,7 @@ compiler vcc:
     asmStmtFrmt: "__asm{$n$1$n}$n",
     structStmtFmt: "$3$n$1 $2",
     packedPragma: "#pragma pack(1)",
-    props: {hasCpp, hasAssume, hasNakedDeclspec})
+    props: {hasCpp, hasAssume, hasDeclspec})
 
 # Intel C/C++ Compiler
 compiler icl:
0100 committer Andreas Rumpf <rumpf_a@web.de> 2010-02-28 23:04:18 +0100 examples/lib use the new wrappers' href='/ahoang/Nim/commit/lib/impure/dialogs.nim?h=devel&id=b559285b78bfa76533d25e77f3f61cab2427bb03'>b559285b7 ^
405b86068

a427648c4 ^
405b86068






759d37286 ^
405b86068




759d37286 ^
405b86068





b559285b7 ^
c5d8a5c1d ^
b559285b7 ^

405b86068
b559285b7 ^


405b86068



b559285b7 ^
405b86068
a427648c4 ^
8b2a9401a ^
405b86068





759d37286 ^
405b86068




759d37286 ^
405b86068
8b2a9401a ^
405b86068



















651686cdf ^



405b86068
b559285b7 ^



405b86068
b559285b7 ^

8b2a9401a ^
b559285b7 ^

405b86068




b559285b7 ^

405b86068

a427648c4 ^
405b86068






759d37286 ^
405b86068




759d37286 ^
405b86068





b559285b7 ^


6c2050912 ^
405b86068
b559285b7 ^



405b86068



b559285b7 ^
405b86068

a427648c4 ^
405b86068


















b559285b7 ^



405b86068
b559285b7 ^


405b86068



b559285b7 ^
405b86068
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