aboutsummaryrefslogtreecommitdiff
path: root/libcpp/include
diff options
context:
space:
mode:
authorRichard Biener <rguenther@suse.de>2022-01-18 12:17:19 +0100
committerRichard Biener <rguenther@suse.de>2022-01-18 14:33:01 +0100
commit4288b57affe34fbc60badf798eb0c19892e69980 (patch)
tree51b10f6e3c01ec773fd9fca53af918413e4e24b4 /libcpp/include
parent0efc551e59f544ab25aeb527ccb2c8b82a03c108 (diff)
downloadgcc-4288b57affe34fbc60badf798eb0c19892e69980.zip
gcc-4288b57affe34fbc60badf798eb0c19892e69980.tar.gz
gcc-4288b57affe34fbc60badf798eb0c19892e69980.tar.bz2
pack fields in line-map data structures
As pointed out by pahole. 2022-01-18 Richard Biener <rguenther@suse.de> libcpp/ * include/line-map.h (class line_maps): Re-arrange fields to minimize padding. (class rich_location): Likewise. * line-map.cc (rich_location::rich_location): Adjust.
Diffstat (limited to 'libcpp/include')
-rw-r--r--libcpp/include/line-map.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/libcpp/include/line-map.h b/libcpp/include/line-map.h
index 3f39eb4..8033572 100644
--- a/libcpp/include/line-map.h
+++ b/libcpp/include/line-map.h
@@ -792,6 +792,9 @@ public:
/* If true, prints an include trace a la -H. */
bool trace_includes;
+ /* True if we've seen a #line or # 44 "file" directive. */
+ bool seen_line_directive;
+
/* Highest location_t "given out". */
location_t highest_location;
@@ -815,9 +818,6 @@ public:
built-in tokens. */
location_t builtin_location;
- /* True if we've seen a #line or # 44 "file" directive. */
- bool seen_line_directive;
-
/* The default value of range_bits in ordinary line maps. */
unsigned int default_range_bits;
@@ -1816,16 +1816,16 @@ protected:
int m_column_override;
bool m_have_expanded_location;
+ bool m_seen_impossible_fixit;
+ bool m_fixits_cannot_be_auto_applied;
+ bool m_escape_on_output;
+
expanded_location m_expanded_location;
static const int MAX_STATIC_FIXIT_HINTS = 2;
semi_embedded_vec <fixit_hint *, MAX_STATIC_FIXIT_HINTS> m_fixit_hints;
- bool m_seen_impossible_fixit;
- bool m_fixits_cannot_be_auto_applied;
-
const diagnostic_path *m_path;
- bool m_escape_on_output;
};
/* A struct for the result of range_label::get_text: a NUL-terminated buffer