Helper function to serialize the APFloat representation of a FloatAttr.
| 228 | |
| 229 | /// Helper function to serialize the APFloat representation of a FloatAttr. |
| 230 | static void writeAPFloatRepresentation(const APFloat &apFloat, |
| 231 | EncodingWriter &writer) { |
| 232 | writeAPInt(apFloat.bitcastToAPInt(), writer); |
| 233 | } |
| 234 | |
| 235 | //===----------------------------------------------------------------------===// |
| 236 | // String Section Management |
no test coverage detected