]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
decl.c (finish_function): Change "#ifdef VMS_TARGET" to "#if VMS_TARGET".
authorMatt Thomas <matt@3am-software.com>
Sun, 23 Jun 2002 21:12:33 +0000 (21:12 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 23 Jun 2002 21:12:33 +0000 (21:12 +0000)
* decl.c (finish_function): Change "#ifdef VMS_TARGET" to
"#if VMS_TARGET".

From-SVN: r54933

gcc/cp/ChangeLog
gcc/cp/decl.c

index 4ae454e494ed7b8d23e6f536fba525bc0e7ef114..c7f7ab5300fc71ab0de9fbc29b52d1747128eeac 100644 (file)
@@ -1,3 +1,8 @@
+2002-06-23  Matt Thomas  <matt@3am-software.com>
+
+       * decl.c (finish_function): Change "#ifdef VMS_TARGET" to
+       "#if VMS_TARGET".
+
 2002-06-20  Richard Henderson  <rth@redhat.com>
 
        PR c++/6747
index bee001fc024b00ff1484d93c53cae22f687af6b8..f640dcdd74c30dfc975ef2437ec95efdc4454e73 100644 (file)
@@ -14236,7 +14236,7 @@ finish_function (flags)
       if (DECL_MAIN_P (current_function_decl))
        {
          /* Make it so that `main' always returns 0 by default.  */
-#ifdef VMS_TARGET
+#if VMS_TARGET
          finish_return_stmt (integer_one_node);
 #else
          finish_return_stmt (integer_zero_node);