Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp548 } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) { in print_details() local
549 OS << '<' << CSDN->getAPIntValue() << '>'; in print_details()
550 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) { in print_details() local
551 if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEsingle()) in print_details()
552 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>'; in print_details()
553 else if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEdouble()) in print_details()
554 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>'; in print_details()
557 CSDN->getValueAPF().bitcastToAPInt().print(OS, false); in print_details()