diff options
author | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-23 19:56:05 +0000 |
---|---|---|
committer | danglin <danglin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-06-23 19:56:05 +0000 |
commit | d442be7a8bc5d31e6a401046201a8868ee7148c0 (patch) | |
tree | f8074132fd255f6046ef3800f415f93c26ad587d /gcc/cp/decl.c | |
parent | 1be372119fa87c4c26292c2c2276400fcf169d29 (diff) | |
download | gcc-d442be7a8bc5d31e6a401046201a8868ee7148c0.tar.gz |
* decl.c (finish_function): Change "#ifdef VMS_TARGET" to
"#if VMS_TARGET".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@54929 138bc75d-0d04-0410-961f-82ee72b054a4
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 de6a293bb08..dc75876b4f8 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); |