+2017-01-06 Martin Liska <mliska@suse.cz>
+
+ PR bootstrap/79003
+ * lra-constraints.c: Rename invariant to lra_invariant.
+ * predict.c (set_even_probabilities): Initialize e to NULL.
+
2017-01-05 Martin Sebor <msebor@redhat.com>
PR tree-optimization/78910
\f
/* Structure describes invariants for ineheritance. */
-struct invariant
+struct lra_invariant
{
/* The order number of the invariant. */
int num;
rtx_insn *insn;
};
-typedef struct invariant invariant_t;
+typedef lra_invariant invariant_t;
typedef invariant_t *invariant_ptr_t;
typedef const invariant_t *const_invariant_ptr_t;
static vec<invariant_ptr_t> invariants;
/* Allocation pool for the invariants. */
-static object_allocator<struct invariant> *invariants_pool;
+static object_allocator<lra_invariant> *invariants_pool;
/* Hash table for the invariants. */
static htab_t invariant_table;
initiate_invariants (void)
{
invariants.create (100);
- invariants_pool = new object_allocator<struct invariant> ("Inheritance invariants");
+ invariants_pool
+ = new object_allocator<lra_invariant> ("Inheritance invariants");
invariant_table = htab_create (100, invariant_hash, invariant_eq_p, NULL);
}
hash_set<edge> *unlikely_edges = NULL)
{
unsigned nedges = 0;
- edge e;
+ edge e = NULL;
edge_iterator ei;
FOR_EACH_EDGE (e, ei, bb->succs)
+2017-01-06 Martin Liska <mliska@suse.cz>
+
+ PR bootstrap/79003
+ * Makefile.in: Add -fno-lto to {C,CPP,LD}FLAGS.
+
2017-01-01 Jakub Jelinek <jakub@redhat.com>
Update copyright years.
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
CC = @CC@
-CFLAGS = @CFLAGS@
+CFLAGS = @CFLAGS@ -fno-lto
WARN_CFLAGS = @WARN_CFLAGS@ @WARN_PEDANTIC@ @WERROR@
CPP = @CPP@
-CPPFLAGS = @CPPFLAGS@
+CPPFLAGS = @CPPFLAGS@ -fno-lto
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
-LDFLAGS = @LDFLAGS@
+LDFLAGS = @LDFLAGS@ -fno-lto
LIBICONV = @LIBICONV@
PACKAGE = @PACKAGE@
PICFLAG = @PICFLAG@