Why is this an issue?

Real literals that are too small to be represented.

How to fix it

Code examples

Noncompliant code example

real r = 5e-325;

Compliant solution

real r = 4.94066e-300;