brintos

brintos / llvm-project-archived public Read only

0
0
Text · 186 B · 8bcfebf Raw
9 lines · cpp
1#include <limits>2 3int main() {4  float fnan = std::numeric_limits<float>::quiet_NaN();5  float fdenorm = std::numeric_limits<float>::denorm_min();6 7  // Set break point at this line.8}9