diff options
Diffstat (limited to 'gcc/value-range-storage.h')
-rw-r--r-- | gcc/value-range-storage.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/value-range-storage.h b/gcc/value-range-storage.h index 9cd6b9f..f506789 100644 --- a/gcc/value-range-storage.h +++ b/gcc/value-range-storage.h @@ -113,9 +113,11 @@ class GTY (()) frange_storage_slot frange_storage_slot (const frange &r) { set_frange (r); } DISABLE_COPY_AND_ASSIGN (frange_storage_slot); - // We can get away with just storing the properties because the type - // can be gotten from the SSA, and UNDEFINED is unsupported, so it - // can only be a range. + // We can get away with just storing the properties and the + // endpoints because the type can be gotten from the SSA, and + // UNDEFINED is unsupported, so it can only be a VR_RANGE. + REAL_VALUE_TYPE m_min; + REAL_VALUE_TYPE m_max; frange_props m_props; }; |