diff options
Diffstat (limited to 'gcc/emit-rtl.c')
-rw-r--r-- | gcc/emit-rtl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/emit-rtl.c b/gcc/emit-rtl.c index 1c39535fdb3..e9d3213a491 100644 --- a/gcc/emit-rtl.c +++ b/gcc/emit-rtl.c @@ -2198,11 +2198,11 @@ verify_rtx_sharing (rtx orig, rtx insn) #ifdef ENABLE_CHECKING if (RTX_FLAG (x, used)) { - error ("Invalid rtl sharing found in the insn"); + error ("invalid rtl sharing found in the insn"); debug_rtx (insn); - error ("Shared rtx"); + error ("shared rtx"); debug_rtx (x); - internal_error ("Internal consistency failure"); + internal_error ("internal consistency failure"); } #endif gcc_assert (!RTX_FLAG (x, used)); |