We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b962e3e commit b20422eCopy full SHA for b20422e
src/ldc/intrinsics.di
@@ -263,12 +263,12 @@ version(INTRINSICS_FROM_304)
263
264
/// The 'llvm.copysign.*' intrinsics return a value with the magnitude of the first operand and the sign of the second operand.
265
266
-pragma(LDC_INTRINSIC, "llvm.copysign.f#")
+pragma(LDC_intrinsic, "llvm.copysign.f#")
267
T llvm_copysign(T)(T mag, T sgn);
268
269
/// The 'llvm.round.*' intrinsics returns the operand rounded to the nearest integer.
270
271
-pragma(LDC_INTRINSIC, "llvm.round.f#")
+pragma(LDC_intrinsic, "llvm.round.f#")
272
T llvm_round(T)(T val);
273
274
}
0 commit comments