diff options
| author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-11-15 23:25:33 +0000 |
|---|---|---|
| committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-11-15 23:25:33 +0000 |
| commit | 66b91e66ecc3caeb71a2b6fd4297921cf7dabe38 (patch) | |
| tree | e6336f48bfea3dddab075d2027b98614ee79a6f1 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
| parent | bd117f06bad5b526e1e75ff3a6bcdb754c45fd45 (diff) | |
| download | bcm5719-llvm-66b91e66ecc3caeb71a2b6fd4297921cf7dabe38.tar.gz bcm5719-llvm-66b91e66ecc3caeb71a2b6fd4297921cf7dabe38.zip | |
Implement necessary bits for flt_rounds gcc builtin.
Codegen bits and llvm-gcc support will follow.
llvm-svn: 44182
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index d92bb9cbd28..38987d9faad 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -3739,6 +3739,7 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { case ISD::SIGN_EXTEND_INREG: return "sign_extend_inreg"; case ISD::TRUNCATE: return "truncate"; case ISD::FP_ROUND: return "fp_round"; + case ISD::FLT_ROUNDS: return "flt_rounds"; case ISD::FP_ROUND_INREG: return "fp_round_inreg"; case ISD::FP_EXTEND: return "fp_extend"; |

