diff options
author | Dan Gohman <gohman@apple.com> | 2012-07-26 17:43:27 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2012-07-26 17:43:27 +0000 |
commit | 27db99fcee85939f0b7580ad55303c4c60a3b98d (patch) | |
tree | f7bda55a435f4ac954c152e2fa376d21c8758153 /include/llvm/Intrinsics.td | |
parent | cd31fc79862f0bf3858bba0b5e30ddd25d8b0065 (diff) | |
download | external_llvm-27db99fcee85939f0b7580ad55303c4c60a3b98d.tar.gz external_llvm-27db99fcee85939f0b7580ad55303c4c60a3b98d.tar.bz2 external_llvm-27db99fcee85939f0b7580ad55303c4c60a3b98d.zip |
Add a floor intrinsic.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160791 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Intrinsics.td')
-rw-r--r-- | include/llvm/Intrinsics.td | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Intrinsics.td b/include/llvm/Intrinsics.td index 06850c9999..f3c58acb2a 100644 --- a/include/llvm/Intrinsics.td +++ b/include/llvm/Intrinsics.td @@ -261,6 +261,7 @@ let Properties = [IntrReadMem] in { def int_exp : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>; def int_exp2 : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>; def int_fabs : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>; + def int_floor : Intrinsic<[llvm_anyfloat_ty], [LLVMMatchType<0>]>; } let Properties = [IntrNoMem] in { |