summaryrefslogtreecommitdiff
path: root/tools/gccld
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-11-29 19:45:47 +0000
committerChris Lattner <sabre@nondot.org>2003-11-29 19:45:47 +0000
commit9e6f686559b186982d8f4af0e3a78b3f8f79ab3b (patch)
tree04b4df8b621bce26fba00721f029f75f4fff317a /tools/gccld
parentf168b7551cf0822aba65d22a0991fb4825cd8402 (diff)
downloadllvm-9e6f686559b186982d8f4af0e3a78b3f8f79ab3b.tar.gz
llvm-9e6f686559b186982d8f4af0e3a78b3f8f79ab3b.tar.bz2
llvm-9e6f686559b186982d8f4af0e3a78b3f8f79ab3b.tar.xz
Fix compatibility with gcc 3.4
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10262 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/gccld')
-rw-r--r--tools/gccld/gccld.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/tools/gccld/gccld.cpp b/tools/gccld/gccld.cpp
index 176679b02f..4c32c18089 100644
--- a/tools/gccld/gccld.cpp
+++ b/tools/gccld/gccld.cpp
@@ -129,9 +129,7 @@ char ** CopyEnv(char ** const envp) {
// Count the number of entries in the old list;
unsigned entries; // The number of entries in the old environment list
for (entries = 0; envp[entries] != NULL; entries++)
- {
- ;
- }
+ /*empty*/;
// Add one more entry for the NULL pointer that ends the list.
++entries;
@@ -141,8 +139,8 @@ char ** CopyEnv(char ** const envp) {
return NULL;
// Allocate a new environment list.
- char **newenv;
- if ((newenv = new (char *) [entries]) == NULL)
+ char **newenv = new char* [entries];
+ if ((newenv = new char* [entries]) == NULL)
return NULL;
// Make a copy of the list. Don't forget the NULL that ends the list.