utils.c (gnat_define_builtin): Remove second parameter of make_decl_rtl.
authorAndreas Schwab <schwab@suse.de>
Fri, 6 Aug 2004 14:21:54 +0000 (14:21 +0000)
committerAndreas Schwab <schwab@gcc.gnu.org>
Fri, 6 Aug 2004 14:21:54 +0000 (14:21 +0000)
* utils.c (gnat_define_builtin): Remove second parameter of
make_decl_rtl.
(begin_subprog_body): Likewise.

From-SVN: r85640

gcc/ada/ChangeLog
gcc/ada/utils.c

index 88eb443d089684b020795393f55058afe64eb49a..e2dc48f59b0ca21b23a1387846cb4e36dc4087ac 100644 (file)
@@ -1,3 +1,9 @@
+2004-08-06  Andreas Schwab  <schwab@suse.de>
+
+       * utils.c (gnat_define_builtin): Remove second parameter of
+       make_decl_rtl.
+       (begin_subprog_body): Likewise.
+
 2004-07-26  Arnaud Charlet  <charlet@act-europe.fr>
 
        * sem_util.adb (Requires_Transient_Scope): Temporarily disable
index 262c19f9cf04894ec0c53286729f00c569d0fa64..c52fcd0db21091d9fdfd8e1b88cfe7627ceaf713 100644 (file)
@@ -425,7 +425,7 @@ gnat_define_builtin (const char *name, tree type,
   TREE_PUBLIC (decl) = 1;
   if (library_name)
     SET_DECL_ASSEMBLER_NAME (decl, get_identifier (library_name));
-  make_decl_rtl (decl, NULL);
+  make_decl_rtl (decl);
   gnat_pushdecl (decl, Empty);
   DECL_BUILT_IN_CLASS (decl) = BUILT_IN_NORMAL;
   DECL_FUNCTION_CODE (decl) = function_code;
@@ -1731,7 +1731,7 @@ begin_subprog_body (tree subprog_decl)
        param_decl = TREE_CHAIN (param_decl))
     DECL_CONTEXT (param_decl) = subprog_decl;
 
-  make_decl_rtl (subprog_decl, NULL);
+  make_decl_rtl (subprog_decl);
 
   /* We handle pending sizes via the elaboration of types, so we don't need to
      save them.  This causes them to be marked as part of the outer function