decl.c (finish_function): Change "#ifdef VMS_TARGET" to "#if VMS_TARGET".
authorMatt Thomas <matt@3am-software.com>
Sun, 23 Jun 2002 19:56:05 +0000 (19:56 +0000)
committerJohn David Anglin <danglin@gcc.gnu.org>
Sun, 23 Jun 2002 19:56:05 +0000 (19:56 +0000)
* decl.c (finish_function): Change "#ifdef VMS_TARGET" to
"#if VMS_TARGET".

From-SVN: r54929

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

index 6631b330b96d3b0027cdc58995c0dfada1123e6e..7df80c8f6b1ca71dab68132b571ceeb95b394560 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-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * mangle.c (integer_type_codes): Const-ify.
index de6a293bb08c15b543b1df1424ea01d134bbbcb9..dc75876b4f821e8ed48155162af114ed18d55dc7 100644 (file)
@@ -14132,7 +14132,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);