summaryrefslogtreecommitdiff
path: root/libcpp/line-map.c
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2009-03-30 15:25:42 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>2009-03-30 15:25:42 +0000
commit102a730640e59ff7e9703b2a25ee4a1f7643bfd1 (patch)
tree7898ad3c70ce756d10e9d36dcd582611a619d3d9 /libcpp/line-map.c
parent4514949a22403811d4d4de86cd83a29f2e8693db (diff)
downloadgcc-102a730640e59ff7e9703b2a25ee4a1f7643bfd1.tar.gz
PR preprocessor/39512:
* line-map.c (linemap_init): Initialize 'reallocator' field. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@145300 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libcpp/line-map.c')
-rw-r--r--libcpp/line-map.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libcpp/line-map.c b/libcpp/line-map.c
index 2802c672aae..1c82902158a 100644
--- a/libcpp/line-map.c
+++ b/libcpp/line-map.c
@@ -41,6 +41,7 @@ linemap_init (struct line_maps *set)
set->highest_location = 0;
set->highest_line = 0;
set->max_column_hint = 0;
+ set->reallocator = 0;
}
/* Check for and warn about line_maps entered but not exited. */