diff --git a/docs/LangRef.html b/docs/LangRef.html index 9c4c4eefd69..08b74deb356 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -256,7 +256,10 @@
This is an overloaded intrinsic. You can use llvm.exp2 on any + floating point or vector of floating point type. Not all targets support all + types however.
+ ++ declare float @llvm.exp2.f32(float %Val) + declare double @llvm.exp2.f64(double %Val) + declare x86_fp80 @llvm.exp2.f80(x86_fp80 %Val) + declare fp128 @llvm.exp2.f128(fp128 %Val) + declare ppc_fp128 @llvm.exp2.ppcf128(ppc_fp128 %Val) ++ +
The 'llvm.exp2.*' intrinsics perform the exp2 function.
+ +The argument and return value are floating point numbers of the same + type.
+ +This function returns the same values as the libm exp2 functions + would, and handles error conditions in the same way.
+ +This is an overloaded intrinsic. You can use llvm.log10 on any + floating point or vector of floating point type. Not all targets support all + types however.
+ ++ declare float @llvm.log10.f32(float %Val) + declare double @llvm.log10.f64(double %Val) + declare x86_fp80 @llvm.log10.f80(x86_fp80 %Val) + declare fp128 @llvm.log10.f128(fp128 %Val) + declare ppc_fp128 @llvm.log10.ppcf128(ppc_fp128 %Val) ++ +
The 'llvm.log10.*' intrinsics perform the log10 function.
+ +The argument and return value are floating point numbers of the same + type.
+ +This function returns the same values as the libm log10 functions + would, and handles error conditions in the same way.
+ +This is an overloaded intrinsic. You can use llvm.log2 on any + floating point or vector of floating point type. Not all targets support all + types however.
+ ++ declare float @llvm.log2.f32(float %Val) + declare double @llvm.log2.f64(double %Val) + declare x86_fp80 @llvm.log2.f80(x86_fp80 %Val) + declare fp128 @llvm.log2.f128(fp128 %Val) + declare ppc_fp128 @llvm.log2.ppcf128(ppc_fp128 %Val) ++ +
The 'llvm.log2.*' intrinsics perform the log2 function.
+ +The argument and return value are floating point numbers of the same + type.
+ +This function returns the same values as the libm log2 functions + would, and handles error conditions in the same way.
+ +