summaryrefslogtreecommitdiff
path: root/gcc/machmode.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/machmode.h')
-rw-r--r--gcc/machmode.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/machmode.h b/gcc/machmode.h
index 981ee92a87a..da0923a81a2 100644
--- a/gcc/machmode.h
+++ b/gcc/machmode.h
@@ -269,16 +269,16 @@ public:
bool prefer_smaller_modes ();
private:
- enum machine_mode mode_;
+ enum machine_mode m_mode;
/* We use signed values here because the bit position can be negative
for invalid input such as gcc.dg/pr48335-8.c. */
- HOST_WIDE_INT bitsize_;
- HOST_WIDE_INT bitpos_;
- HOST_WIDE_INT bitregion_start_;
- HOST_WIDE_INT bitregion_end_;
- unsigned int align_;
- bool volatilep_;
- int count_;
+ HOST_WIDE_INT m_bitsize;
+ HOST_WIDE_INT m_bitpos;
+ HOST_WIDE_INT m_bitregion_start;
+ HOST_WIDE_INT m_bitregion_end;
+ unsigned int m_align;
+ bool m_volatilep;
+ int m_count;
};
/* Find the best mode to use to access a bit field. */