diff options
author | Mon P Wang <wangmp@apple.com> | 2008-11-11 05:40:06 +0000 |
---|---|---|
committer | Mon P Wang <wangmp@apple.com> | 2008-11-11 05:40:06 +0000 |
commit | 00ec49b6bafc33ee17d97ec1c723e1edb41d4c97 (patch) | |
tree | 47521377ff183f154e273dece30b247fd9e39423 /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | 935e8e9afed294c5fa3af834e3bc81f392368160 (diff) |
Cleaned up and fix bugs in convert_rndsat node
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59025 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 5c87e044b0..94bb2ae79b 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -432,9 +432,10 @@ namespace ISD { BIT_CONVERT, // CONVERT_RNDSAT - This operator is used to support various conversions - // between various types (float, signed, unsigned) with rounding and - // saturation. NOTE: Avoid using this operator as most target don't support - // it and they might be removed. It takes the following arguments: + // between various types (float, signed, unsigned and vectors of those + // types) with rounding and saturation. NOTE: Avoid using this operator as + // most target don't support it and the operator might be removed in the + // future. It takes the following arguments: // 0) value // 1) dest type (type to convert to) // 2) src type (type to convert from) |