aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-28 21:44:03 +0000
committerChris Lattner <sabre@nondot.org>2005-04-28 21:44:03 +0000
commit7f64464ff100bcb7661b65c74c13dc88e83eb65b (patch)
treebc852ed18dc369e180456ab868aaef16aa045fc6 /include/llvm/CodeGen
parent5624c75f9f2bb921872af33508f0d53c653de869 (diff)
downloadexternal_llvm-7f64464ff100bcb7661b65c74c13dc88e83eb65b.zip
external_llvm-7f64464ff100bcb7661b65c74c13dc88e83eb65b.tar.gz
external_llvm-7f64464ff100bcb7661b65c74c13dc88e83eb65b.tar.bz2
Add FSQRT, FSIN, FCOS nodes, patch contributed by Morten Ofstad
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21605 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index 1df6513..f3be334 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -168,9 +168,9 @@ namespace ISD {
// FP_EXTEND - Extend a smaller FP type into a larger FP type.
FP_EXTEND,
- // FNEG, FABS - Perform unary floating point negation and absolute value
- // operations.
- FNEG, FABS,
+ // FNEG, FABS, FSQRT, FSIN, FCOS - Perform unary floating point negation,
+ // absolute value, square root, sine and cosine operations.
+ FNEG, FABS, FSQRT, FSIN, FCOS,
// Other operators. LOAD and STORE have token chains as their first
// operand, then the same operands as an LLVM load/store instruction.