Skip to content

Commit 85f3100

Browse files
committed
The nomangle attribute is not needed and does not exist
1 parent 082dbd3 commit 85f3100

File tree

1 file changed

+1
-41
lines changed

1 file changed

+1
-41
lines changed

src/libcore/unstable/intrinsics.rs

+1-41
Original file line numberDiff line numberDiff line change
@@ -67,85 +67,71 @@ pub extern "rust-intrinsic" {
6767

6868
#[nolink]
6969
pub extern mod llvm {
70-
#[nomangle]
7170
#[rust_stack]
7271
#[inline(always)]
7372
#[link_name="llvm.sqrt.f32"]
7473
pub fn sqrtf32(x: f32) -> f32;
7574

76-
#[nomangle]
7775
#[rust_stack]
7876
#[inline(always)]
7977
#[link_name="llvm.sqrt.f64"]
8078
pub fn sqrtf64(x: f64) -> f64;
8179

82-
#[nomangle]
8380
#[rust_stack]
8481
#[inline(always)]
8582
#[link_name="llvm.powi.f32"]
8683
pub fn powif32(a: f32, x: i32) -> f32;
8784

88-
#[nomangle]
8985
#[rust_stack]
9086
#[inline(always)]
9187
#[link_name="llvm.powi.f64"]
9288
pub fn powif64(a: f64, x: i32) -> f64;
9389

94-
#[nomangle]
9590
#[rust_stack]
9691
#[inline(always)]
9792
#[link_name="llvm.sin.f32"]
9893
pub fn sinf32(x: f32) -> f32;
9994

100-
#[nomangle]
10195
#[rust_stack]
10296
#[inline(always)]
10397
#[link_name="llvm.sin.f64"]
10498
pub fn sinf64(x: f64) -> f64;
10599

106-
#[nomangle]
107100
#[rust_stack]
108101
#[inline(always)]
109102
#[link_name="llvm.cos.f32"]
110103
pub fn cosf32(x: f32) -> f32;
111104

112-
#[nomangle]
113105
#[rust_stack]
114106
#[inline(always)]
115107
#[link_name="llvm.cos.f64"]
116108
pub fn cosf64(x: f64) -> f64;
117109

118-
#[nomangle]
119110
#[rust_stack]
120111
#[inline(always)]
121112
#[link_name="llvm.pow.f32"]
122113
pub fn powf32(a: f32, x: f32) -> f32;
123114

124-
#[nomangle]
125115
#[rust_stack]
126116
#[inline(always)]
127117
#[link_name="llvm.pow.f64"]
128118
pub fn powf64(a: f64, x: f64) -> f64;
129119

130-
#[nomangle]
131120
#[rust_stack]
132121
#[inline(always)]
133122
#[link_name="llvm.exp.f32"]
134123
pub fn expf32(x: f32) -> f32;
135124

136-
#[nomangle]
137125
#[rust_stack]
138126
#[inline(always)]
139127
#[link_name="llvm.exp.f64"]
140128
pub fn expf64(x: f64) -> f64;
141129

142-
#[nomangle]
143130
#[rust_stack]
144131
#[inline(always)]
145132
#[link_name="llvm.log.f32"]
146133
pub fn logf32(x: f32) -> f32;
147134

148-
#[nomangle]
149135
#[rust_stack]
150136
#[inline(always)]
151137
#[link_name="llvm.log.f64"]
@@ -155,159 +141,133 @@ pub extern mod llvm {
155141
pub fn exp2f32(x: f32) -> f32;
156142
pub fn exp2f64(x: f64) -> f64;
157143
158-
159144
pub fn log10f32(x: f32) -> f32;
160145
pub fn log10f64(x: f64) -> f64;
161146
162147
pub fn log2f32(x: f32) -> f32;
163148
pub fn log2f64(x: f64) -> f64;
164149
*/
165150

166-
#[nomangle]
167151
#[rust_stack]
168152
#[inline(always)]
169153
#[link_name="llvm.fma.f32"]
170154
pub fn fmaf32(a: f32, b: f32, c: f32) -> f32;
171155

172-
#[nomangle]
173156
#[rust_stack]
174157
#[inline(always)]
175158
#[link_name="llvm.fma.f64"]
176159
pub fn fmaf64(a: f64, b: f64, c: f64) -> f64;
177160

178-
#[nomangle]
179161
#[rust_stack]
180162
#[inline(always)]
181163
#[link_name="llvm.fabs.f32"]
182164
pub fn fabsf32(x: f32) -> f32;
183165

184-
#[nomangle]
185166
#[rust_stack]
186167
#[inline(always)]
187168
#[link_name="llvm.fabs.f64"]
188169
pub fn fabsf64(x: f64) -> f64;
189170

190-
#[nomangle]
191171
#[rust_stack]
192172
#[inline(always)]
193173
#[link_name="llvm.floor.f32"]
194174
pub fn floorf32(x: f32) -> f32;
195175

196-
#[nomangle]
197176
#[rust_stack]
198177
#[inline(always)]
199178
#[link_name="llvm.floor.f64"]
200179
pub fn floorf64(x: f64) -> f64;
201180

202181
/* NOTE: Needs LLVM 3.3
203-
#[nomangle]
204182
#[rust_stack]
205183
#[link_name="llvm.ceil.f32"]
206184
pub fn ceilf32(x: f32) -> f32;
207185
208-
#[nomangle]
209186
#[rust_stack]
210187
#[link_name="llvm.ceil.f64"]
211188
pub fn ceilf64(x: f64) -> f64;
212189
213-
#[nomangle]
214190
#[rust_stack]
215191
#[link_name="llvm.trunc.f32"]
216192
pub fn truncf32(x: f32) -> f32;
217193
218-
#[nomangle]
219194
#[rust_stack]
220195
#[link_name="llvm.trunc.f64"]
221196
pub fn truncf64(x: f64) -> f64;
222197
*/
223198

224-
#[nomangle]
225199
#[rust_stack]
226200
#[inline(always)]
227201
#[link_name="llvm.ctpop.i8"]
228202
pub fn ctpop8(x: i8) -> i8;
229203

230-
#[nomangle]
231204
#[rust_stack]
232205
#[inline(always)]
233206
#[link_name="llvm.ctpop.i16"]
234207
pub fn ctpop16(x: i16) -> i16;
235208

236-
#[nomangle]
237209
#[rust_stack]
238210
#[inline(always)]
239211
#[link_name="llvm.ctpop.i32"]
240212
pub fn ctpop32(x: i32) -> i32;
241213

242-
#[nomangle]
243214
#[rust_stack]
244215
#[inline(always)]
245216
#[link_name="llvm.ctpop.i64"]
246217
pub fn ctpop64(x: i64) -> i64;
247218

248-
/* NOTE: Needs bool constants
249-
#[nomangle]
219+
/* NOTE: Needs i1 constants
250220
#[rust_stack]
251221
#[inline(always)]
252222
#[link_name="llvm.ctlz.i8"]
253223
pub fn ctlz8(x: i8, is_zero_undef: bool) -> i8;
254224
255-
#[nomangle]
256225
#[rust_stack]
257226
#[inline(always)]
258227
#[link_name="llvm.ctlz.i16"]
259228
pub fn ctlz16(x: i16, is_zero_undef: bool) -> i16;
260229
261-
#[nomangle]
262230
#[rust_stack]
263231
#[inline(always)]
264232
#[link_name="llvm.ctlz.i32"]
265233
pub fn ctlz32(x: i32, is_zero_undef: bool) -> i32;
266234
267-
#[nomangle]
268235
#[rust_stack]
269236
#[inline(always)]
270237
#[link_name="llvm.ctlz.i64"]
271238
pub fn ctlz64(x: i64, is_zero_undef: bool) -> i64;
272239
273-
#[nomangle]
274240
#[rust_stack]
275241
#[inline(always)]
276242
#[link_name="llvm.cttz.i8"]
277243
pub fn cttz8(x: i8, is_zero_undef: bool) -> i8;
278244
279-
#[nomangle]
280245
#[rust_stack]
281246
#[inline(always)]
282247
#[link_name="llvm.cttz.i16"]
283248
pub fn cttz16(x: i16, is_zero_undef: bool) -> i16;
284249
285-
#[nomangle]
286250
#[rust_stack]
287251
#[inline(always)]
288252
#[link_name="llvm.cttz.i32"]
289253
pub fn cttz32(x: i32, is_zero_undef: bool) -> i32;
290254
291-
#[nomangle]
292255
#[rust_stack]
293256
#[inline(always)]
294257
#[link_name="llvm.cttz.i64"]
295258
pub fn cttz64(x: i64, is_zero_undef: bool) -> i64;
296259
*/
297260

298-
#[nomangle]
299261
#[rust_stack]
300262
#[inline(always)]
301263
#[link_name="llvm.bswap.i16"]
302264
pub fn bswap16(x: i16) -> i16;
303265

304-
#[nomangle]
305266
#[rust_stack]
306267
#[inline(always)]
307268
#[link_name="llvm.bswap.i32"]
308269
pub fn bswap32(x: i32) -> i32;
309270

310-
#[nomangle]
311271
#[rust_stack]
312272
#[inline(always)]
313273
#[link_name="llvm.bswap.i64"]

0 commit comments

Comments
 (0)