Home
last modified time | relevance | path

Searched refs:CSDN (Results 1 – 1 of 1) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp630 } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) { in print_details() local
631 OS << '<' << CSDN->getAPIntValue() << '>'; in print_details()
632 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) { in print_details() local
633 if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEsingle()) in print_details()
634 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>'; in print_details()
635 else if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEdouble()) in print_details()
636 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>'; in print_details()
639 CSDN->getValueAPF().bitcastToAPInt().print(OS, false); in print_details()