]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
system.h: Poison PROMOTED_MODE
authorSteven Bosscher <steven@gcc.gnu.org>
Wed, 14 Jan 2004 20:05:29 +0000 (20:05 +0000)
committerSteven Bosscher <steven@gcc.gnu.org>
Wed, 14 Jan 2004 20:05:29 +0000 (20:05 +0000)
* system.h: Poison PROMOTED_MODE
* integrate.c (expand_inline_function): Don't mention the
PROMOTED_MODE.
* loop.c (update_giv_derive): Same.
* tree.h (DECL_RTL): Same.

From-SVN: r75878

gcc/ChangeLog
gcc/integrate.c
gcc/loop.c
gcc/system.h
gcc/tree.h

index 3ab2f54c2e99bdc28af605c92d2a36355d64a7fb..d4e26153f661a74e80cd5d0d41f9d4d252e722a7 100644 (file)
@@ -1,3 +1,11 @@
+2003-01-14  Steven Bosscher  <stevenb@suse.de>
+
+       * system.h: Poison PROMOTED_MODE
+       * integrate.c (expand_inline_function): Don't mention the
+       PROMOTED_MODE.
+       * loop.c (update_giv_derive): Same.
+       * tree.h (DECL_RTL): Same.
+
 2004-01-14  J"orn Rennecke <joern.rennecke@superh.com>
 
        PR target/9365
 
 2004-01-13  Vladimir Makarov  <vmakarov@redhat.com>
 
-        * rtl.def: Add comment about new option in automata_option.
+       * rtl.def: Add comment about new option in automata_option.
        
        * genautomata.c (PROGRESS_OPTION): New macro.
        (progress_flag): New global variable.
index d3e47a6a05517f4663be675a346f1f05045c0078..47327de03b9ec246f5009623e454e06da3be6d7f 100644 (file)
@@ -771,7 +771,7 @@ expand_inline_function (tree fndecl, tree parms, rtx target, int ignore,
                abort ();
 
              /* The mode if LOC and ARG can differ if LOC was a variable
-                that had its mode promoted via PROMOTED_MODE.  */
+                that had its mode promoted.  */
              arg_vals[i] = convert_modes (pmode,
                                           TYPE_MODE (TREE_TYPE (arg)),
                                           expand_expr (arg, NULL_RTX, mode,
index 21369dec22e16f6e9ec715a8a350ab79ac786283..96f49998e6959c23cde92dbcf02afa2c64461b2e 100644 (file)
@@ -6212,7 +6212,7 @@ update_giv_derive (const struct loop *loop, rtx p)
    *MULT_VAL to CONST0_RTX, and store the invariant into *INC_VAL.
 
    We also want to detect a BIV when it corresponds to a variable
-   whose mode was promoted via PROMOTED_MODE.  In that case, an increment
+   whose mode was promoted.  In that case, an increment
    of the variable may be a PLUS that adds a SUBREG of that variable to
    an invariant and then sign- or zero-extends the result of the PLUS
    into the variable.
index dc939697c93c52c19253bb08e3e78d3cad31ce32..02863c255b37b7bc7a8328f795678a4d4a50358e 100644 (file)
@@ -622,7 +622,8 @@ typedef char _Bool;
        LIBGCC_NEEDS_DOUBLE FINAL_PRESCAN_LABEL DEFAULT_CALLER_SAVES       \
        LOAD_ARGS_REVERSED MAX_INTEGER_COMPUTATION_MODE                    \
        CONVERT_HARD_REGISTER_TO_SSA_P ASM_OUTPUT_MAIN_SOURCE_FILENAME     \
-       FIRST_INSN_ADDRESS TEXT_SECTION SHARED_BSS_SECTION_ASM_OP
+       FIRST_INSN_ADDRESS TEXT_SECTION SHARED_BSS_SECTION_ASM_OP          \
+       PROMOTED_MODE
 
 /* Hooks that are no longer used.  */
  #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE  \
index aa967d9f5e0edcb71eba76f26b91ec911c053866..8f4334f0f58ea08aa47837fedf722de5b7d18539 100644 (file)
@@ -1346,12 +1346,7 @@ struct tree_type GTY(())
    field.  Always equal to TYPE_MODE (TREE_TYPE (decl)) except for a
    FIELD_DECL.  */
 #define DECL_MODE(NODE) (DECL_CHECK (NODE)->decl.mode)
-/* Holds the RTL expression for the value of a variable or function.  If
-   PROMOTED_MODE is defined, the mode of this expression may not be same
-   as DECL_MODE.  In that case, DECL_MODE contains the mode corresponding
-   to the variable's data type, while the mode
-   of DECL_RTL is the mode actually used to contain the data.
-
+/* Holds the RTL expression for the value of a variable or function.
    This value can be evaluated lazily for functions, variables with
    static storage duration, and labels.  */
 #define DECL_RTL(NODE)                                 \