diff options
author | Matt Thomas <matt@3am-software.com> | 2002-06-23 19:56:05 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2002-06-23 19:56:05 +0000 |
commit | 08c7ae5a5103100df7b61e27d7e03452c01af9f7 (patch) | |
tree | f8074132fd255f6046ef3800f415f93c26ad587d /gcc/cp/decl.c | |
parent | b03bcd3733ea98fbd0a1d7cf0ba635db58f5d730 (diff) | |
download | gcc-08c7ae5a5103100df7b61e27d7e03452c01af9f7.zip gcc-08c7ae5a5103100df7b61e27d7e03452c01af9f7.tar.gz gcc-08c7ae5a5103100df7b61e27d7e03452c01af9f7.tar.bz2 |
decl.c (finish_function): Change "#ifdef VMS_TARGET" to "#if VMS_TARGET".
* decl.c (finish_function): Change "#ifdef VMS_TARGET" to
"#if VMS_TARGET".
From-SVN: r54929
Diffstat (limited to 'gcc/cp/decl.c')
-rw-r--r-- | gcc/cp/decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index de6a293..dc75876 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -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); |