aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorDiego Novillo <dnovillo@google.com>2013-09-27 12:23:41 -0400
committerDiego Novillo <dnovillo@gcc.gnu.org>2013-09-27 12:23:41 -0400
commitac1857a3ef390df0c1b8faf745f855e8c5346b10 (patch)
treec63d49a230fec4270ff93a7165e0f061c0974dab /gcc
parent3c468b4cb9068b7f81f8055f21f1abf3a915065e (diff)
downloadgcc-ac1857a3ef390df0c1b8faf745f855e8c5346b10.zip
gcc-ac1857a3ef390df0c1b8faf745f855e8c5346b10.tar.gz
gcc-ac1857a3ef390df0c1b8faf745f855e8c5346b10.tar.bz2
The gimple builder no longer support normal form.
The gimple builder no longer support normal form. The ssa_mode enum is not needed now. * gimple.h (enum ssa_mode): Remove. From-SVN: r202977
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/gimple.h9
2 files changed, 4 insertions, 9 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 5ed6b47..4b33045 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2013-09-27 Diego Novillo <dnovillo@google.com>
+
+ * gimple.h (enum ssa_mode): Remove.
+
2013-09-27 Paulo Matos <pmatos@broadcom.com>
PR middle-end/58463
diff --git a/gcc/gimple.h b/gcc/gimple.h
index 3047ab4..a031c8d 100644
--- a/gcc/gimple.h
+++ b/gcc/gimple.h
@@ -34,15 +34,6 @@ along with GCC; see the file COPYING3. If not see
typedef gimple gimple_seq_node;
-/* Types of supported temporaries. GIMPLE temporaries may be symbols
- in normal form (i.e., regular decls) or SSA names. This enum is
- used by create_gimple_tmp to tell it what kind of temporary the
- caller wants. */
-enum ssa_mode {
- M_SSA = 0,
- M_NORMAL
-};
-
/* For each block, the PHI nodes that need to be rewritten are stored into
these vectors. */
typedef vec<gimple> gimple_vec;