aboutsummaryrefslogtreecommitdiff
path: root/gcc/data-streamer-in.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/data-streamer-in.cc')
-rw-r--r--gcc/data-streamer-in.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/data-streamer-in.cc b/gcc/data-streamer-in.cc
index 12cb10e..7dce292 100644
--- a/gcc/data-streamer-in.cc
+++ b/gcc/data-streamer-in.cc
@@ -219,14 +219,14 @@ streamer_read_real_value (class lto_input_block *ib, REAL_VALUE_TYPE *r)
void
streamer_read_value_range (class lto_input_block *ib, data_in *data_in,
- Value_Range &vr)
+ value_range &vr)
{
// Read the common fields to all vranges.
value_range_kind kind = streamer_read_enum (ib, value_range_kind, VR_LAST);
gcc_checking_assert (kind != VR_UNDEFINED);
tree type = stream_read_tree (ib, data_in);
- // Initialize the Value_Range to the correct type.
+ // Initialize the value_range to the correct type.
vr.set_type (type);
if (is_a <irange> (vr))