2018-06-10 Dominique d'Humieres <dominiq@gcc.gnu.org>
PR fortran/79854
* trans-const.c: Remove include "diagnostic-core.h".
(gfc_conv_constant_to_tree): Replace fatal_error with gcc_unreachable.
From-SVN: r261387
+2018-06-10 Dominique d'Humieres <dominiq@gcc.gnu.org>
+
+ PR fortran/79854
+ * trans-const.c: Remove include "diagnostic-core.h".
+ (gfc_conv_constant_to_tree): Replace fatal_error with gcc_unreachable.
+
2018-06-10 Janus Weil <janus@gcc.gnu.org>
PR fortran/85088
#include "tree.h"
#include "gfortran.h"
#include "trans.h"
-#include "diagnostic-core.h" /* For fatal_error. */
#include "fold-const.h"
#include "stor-layout.h"
#include "realmpfr.h"
expr->representation.string);
default:
- fatal_error (input_location,
- "gfc_conv_constant_to_tree(): invalid type: %s",
- gfc_typename (&expr->ts));
+ gcc_unreachable ();
}
}