aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-09-08 06:43:00 +0000
committerChris Lattner <sabre@nondot.org>2006-09-08 06:43:00 +0000
commit1e5fb6928c510bc945dbcd23d99022288ad7e863 (patch)
tree2e4a523e3576a7917d8ad70852237c03301ce638 /include
parentf4d252dc3acd29af03f7825716a8361585b5f432 (diff)
downloadexternal_llvm-1e5fb6928c510bc945dbcd23d99022288ad7e863.zip
external_llvm-1e5fb6928c510bc945dbcd23d99022288ad7e863.tar.gz
external_llvm-1e5fb6928c510bc945dbcd23d99022288ad7e863.tar.bz2
add powi intrinsics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30176 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Intrinsics.td3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td
index 3b1fae3..3169c22 100644
--- a/include/llvm/Intrinsics.td
+++ b/include/llvm/Intrinsics.td
@@ -171,6 +171,9 @@ let Properties = [IntrNoMem] in {
llvm_double_ty, llvm_double_ty]>;
def int_sqrt_f32 : Intrinsic<[llvm_float_ty , llvm_float_ty]>;
def int_sqrt_f64 : Intrinsic<[llvm_double_ty, llvm_double_ty]>;
+
+ def int_powi_f32 : Intrinsic<[llvm_float_ty , llvm_float_ty, llvm_int_ty]>;
+ def int_powi_f64 : Intrinsic<[llvm_double_ty, llvm_double_ty, llvm_int_ty]>;
}
// NOTE: these are internal interfaces.