Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGDumper.cpp693 } else if (const ConstantSDNode *CSDN = dyn_cast<ConstantSDNode>(this)) { in print_details() local
694 OS << '<' << CSDN->getAPIntValue() << '>'; in print_details()
695 } else if (const ConstantFPSDNode *CSDN = dyn_cast<ConstantFPSDNode>(this)) { in print_details() local
696 if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEsingle()) in print_details()
697 OS << '<' << CSDN->getValueAPF().convertToFloat() << '>'; in print_details()
698 else if (&CSDN->getValueAPF().getSemantics() == &APFloat::IEEEdouble()) in print_details()
699 OS << '<' << CSDN->getValueAPF().convertToDouble() << '>'; in print_details()
702 CSDN->getValueAPF().bitcastToAPInt().print(OS, false); in print_details()