Skip to content

Commit b20422e

Browse files
committed
Fix type in pragma (LLVM 3.4 only)
1 parent b962e3e commit b20422e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ldc/intrinsics.di

+2-2
Original file line numberDiff line numberDiff line change
@@ -263,12 +263,12 @@ version(INTRINSICS_FROM_304)
263263

264264
/// The 'llvm.copysign.*' intrinsics return a value with the magnitude of the first operand and the sign of the second operand.
265265

266-
pragma(LDC_INTRINSIC, "llvm.copysign.f#")
266+
pragma(LDC_intrinsic, "llvm.copysign.f#")
267267
T llvm_copysign(T)(T mag, T sgn);
268268

269269
/// The 'llvm.round.*' intrinsics returns the operand rounded to the nearest integer.
270270

271-
pragma(LDC_INTRINSIC, "llvm.round.f#")
271+
pragma(LDC_intrinsic, "llvm.round.f#")
272272
T llvm_round(T)(T val);
273273

274274
}

0 commit comments

Comments
 (0)