]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
The gimple builder no longer support normal form.
authorDiego Novillo <dnovillo@google.com>
Fri, 27 Sep 2013 16:23:41 +0000 (12:23 -0400)
committerDiego Novillo <dnovillo@gcc.gnu.org>
Fri, 27 Sep 2013 16:23:41 +0000 (12:23 -0400)
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

gcc/ChangeLog
gcc/gimple.h

index 5ed6b470fdda70a683daceef18c03f55f2f2d38c..4b330457c1310ba3c5e014bac5371803cb979c51 100644 (file)
@@ -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
index 3047ab4b66780696ca4a168ee4cf86c7ff2e7815..a031c8d777c7b3383daa87d23cb5c7c9b61487b3 100644 (file)
@@ -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;